baseimage-tutorial-framework/nginx/nginx.conf
2018-01-31 23:04:51 +01:00

22 lines
505 B
Nginx Configuration File

server {
listen ${TFW_PUBLIC_PORT};
server_name localhost;
proxy_connect_timeout 7d;
proxy_send_timeout 7d;
proxy_read_timeout 7d;
location = /ws {
proxy_pass http://127.0.0.1:${TFW_WEB_PORT};
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
include ${TFW_NGINX_COMPONENTS}/*.conf;
location / {
root ${TFW_FRONTEND_DIR};
try_files $uri $uri/ index.html;
}
}