Skip to content
Snippets Groups Projects
Unverified Commit 0a467f69 authored by Florian Raith's avatar Florian Raith Committed by GitHub
Browse files

Docker production ready (#1)

* Docker production ready

* Update submodules

* Add reverse proxy
parent 31128e9e
No related branches found
No related tags found
No related merge requests found
.vscode
.env
.DS_Store
\ No newline at end of file
.DS_Store
Subproject commit 606de9abcc34c5624f48aa640b4bac28c8395d41
Subproject commit 00ab0beaa55c3899bff793aa916ced3fc42a3fd8
version: '3'
services:
proxy:
build:
context: ./proxy
container_name: cs_prod_proxy
ports:
- 80:80
networks:
- app
depends_on:
- backend
- frontend
backend:
build:
context: ./backend
target: production
container_name: cs_prod_backend
ports:
- 3000:80
env_file:
- ./backend/.env
networks:
- app
depends_on:
- mysql
frontend:
build:
context: ./frontend
target: production
container_name: cs_prod_frontend
ports:
- 3001:80
env_file:
- ./backend/.env
networks:
- app
depends_on:
- backend
mysql:
image: mysql:8.0
container_name: cs_prod_mysql
volumes:
- mysql:/var/lib/mysql
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: '12345'
MYSQL_ROOT_HOST: '%'
MYSQL_DATABASE: 'collab_space'
MYSQL_USER: 'user'
MYSQL_PASSWORD: '12345'
MYSQL_ALLOW_EMPTY_PASSWORD: 1
networks:
- app
networks:
app:
volumes:
mysql:
......@@ -4,6 +4,7 @@ services:
backend:
build:
context: ./backend
target: development
container_name: cs_backend
command: npm run start:dev
volumes:
......@@ -21,6 +22,7 @@ services:
frontend:
build:
context: ./frontend
target: development
container_name: cs_frontend
command: npm run dev -- --host
volumes:
......
Subproject commit b5b6d351f0d3358e7ae7c89f528b4d63d0fc28af
Subproject commit 4320ae7023bf375abb07a6d6caa17fa62e0638c3
FROM nginx:alpine
COPY ./default.conf /etc/nginx/conf.d/default.conf
COPY ./includes/ /etc/nginx/includes/
\ No newline at end of file
server {
listen 80;
server_name api.collabspace-app.com;
location / {
include /etc/nginx/includes/proxy.conf;
proxy_pass http://backend;
include /etc/nginx/includes/cors.conf;
}
}
server {
listen 80;
server_name collabspace-app.com;
location / {
include /etc/nginx/includes/proxy.conf;
proxy_pass http://frontend;
error_page 404 = /index.html;
}
}
server {
listen 80;
server_name api.collabspace.local;
location / {
include /etc/nginx/includes/proxy.conf;
proxy_pass http://backend;
include /etc/nginx/includes/cors.conf;
}
}
server {
listen 80;
server_name collabspace.local;
location / {
include /etc/nginx/includes/proxy.conf;
proxy_pass http://frontend;
error_page 404 = /index.html;
}
}
\ No newline at end of file
# if ($http_origin ~ '(collabspace\.local$)|(collabspace-app\.com$)') {
# add_header 'Access-Control-Allow-Origin' "*" always;
# add_header 'Access-Control-Allow-Credentials' 'true' always;
# add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;
# add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always;
# add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always;
# }
#
# if ($request_method = 'OPTIONS') {
# add_header 'Access-Control-Max-Age' 1728000;
# add_header 'Content-Type' 'text/plain; charset=utf-8';
# add_header 'Content-Length' 0;
# return 204;
# }
set $cors '';
if ($http_origin ~ '(collabspace\.local$)|(collabspace-app\.com$)') {
set $cors 'origin_matched';
}
if ($request_method = OPTIONS) {
set $cors '${cors} & preflight';
}
if ($cors = 'origin_matched') {
add_header 'Access-Control-Allow-Origin' '$http_origin' always;
add_header 'Access-Control-Allow-Credentials' 'true' always;
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always;
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always;
}
if ($cors = 'origin_matched & preflight') {
add_header 'Access-Control-Allow-Origin' '$http_origin' always;
add_header 'Access-Control-Allow-Credentials' 'true' always;
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' always;
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always;
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always;
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
\ No newline at end of file
access_log off;
proxy_intercept_errors on;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment