front depend des autres conteneurs
This commit is contained in:
@@ -12,6 +12,9 @@ services:
|
|||||||
- FLASK_ENV=development
|
- FLASK_ENV=development
|
||||||
depends_on:
|
depends_on:
|
||||||
- back
|
- back
|
||||||
|
- db
|
||||||
|
- etherpad
|
||||||
|
- mail
|
||||||
networks:
|
networks:
|
||||||
- app-network
|
- app-network
|
||||||
|
|
||||||
|
|||||||
@@ -1,16 +1,37 @@
|
|||||||
|
##########################
|
||||||
|
## FRONTEND + API
|
||||||
|
##########################
|
||||||
server {
|
server {
|
||||||
location /api/polls {
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name front.local;
|
||||||
|
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
index index.html;
|
||||||
|
|
||||||
|
##########################
|
||||||
|
# Proxy API requests to the back service
|
||||||
|
##########################
|
||||||
|
location /api/ {
|
||||||
proxy_pass http://back:8080;
|
proxy_pass http://back:8080;
|
||||||
proxy_set_header Host $http_host;
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
proxy_set_header X-Forwarded-Proto $scheme;
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header Connection "";
|
||||||
}
|
}
|
||||||
|
##########################
|
||||||
|
# FrontEnd returns
|
||||||
|
##########################
|
||||||
location / {
|
location / {
|
||||||
root /usr/share/nginx/html;
|
proxy_pass http://front:5080;
|
||||||
index index.html index.htm;
|
proxy_http_version 1.1;
|
||||||
try_files $uri $uri/ /index.html?$args;
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header Connection "";
|
||||||
}
|
}
|
||||||
|
|
||||||
error_page 500 502 503 504 /50x.html;
|
error_page 500 502 503 504 /50x.html;
|
||||||
@@ -18,3 +39,37 @@ server {
|
|||||||
root /usr/share/nginx/html;
|
root /usr/share/nginx/html;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
##
|
||||||
|
## BACKEND
|
||||||
|
##
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name back.local;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://back:8080;
|
||||||
|
proxy_set_header Host $http_host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
##
|
||||||
|
## ETHERPAD
|
||||||
|
##
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
|
server_name etherpad.local;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://etherpad:9001;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
proxy_set_header Host $http_host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user