51 lines
1.3 KiB
Nginx Configuration File
51 lines
1.3 KiB
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
gzip on;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://backend:3100;
|
|
|
|
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 Authorization $http_authorization;
|
|
proxy_cache_bypass $http_upgrade;
|
|
proxy_connect_timeout 10s;
|
|
proxy_send_timeout 650s;
|
|
proxy_read_timeout 650s;
|
|
}
|
|
|
|
location /bus/ {
|
|
proxy_pass http://backend:3100;
|
|
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection 'upgrade';
|
|
proxy_set_header Host $http_host;
|
|
proxy_cache_bypass $http_upgrade;
|
|
proxy_connect_timeout 10s;
|
|
proxy_send_timeout 650s;
|
|
proxy_read_timeout 650s;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 3100;
|
|
server_name localhost;
|
|
location / {
|
|
proxy_pass http://backend:3100/;
|
|
proxy_set_header Host $http_host;
|
|
}
|
|
}
|