forked from kristjan/cjvt-valency
26 lines
428 B
Nginx Configuration File
26 lines
428 B
Nginx Configuration File
# frontend
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location / {
|
|
root /srv/dist;
|
|
index index.html index.htm;
|
|
}
|
|
|
|
location /home {
|
|
return 301 /;
|
|
}
|
|
}
|
|
|
|
# backend
|
|
server {
|
|
listen 8084;
|
|
server_name _;
|
|
|
|
location / {
|
|
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $http_host;
|
|
proxy_pass http://backend_flask:8084;
|
|
}
|
|
} |