65 lines
1.8 KiB
Nginx Configuration File
65 lines
1.8 KiB
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
gzip on;
|
|
gzip_vary on;
|
|
gzip_min_length 256;
|
|
gzip_types
|
|
text/css
|
|
application/javascript
|
|
application/json
|
|
text/javascript
|
|
application/xml
|
|
application/xml+rss
|
|
text/plain;
|
|
|
|
location /ws/ {
|
|
proxy_pass http://backend:8000/ws/;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Host $host;
|
|
proxy_read_timeout 3600s;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://backend:8000/api/;
|
|
proxy_http_version 1.1;
|
|
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;
|
|
# Výchozí nginx read_timeout = 60s → 504 při POST /plan/run (solver + export_setpoints / Modbus).
|
|
# Axios u náročných volání = 120s; rezerva pro více zápisů na bráně / Loxone.
|
|
proxy_connect_timeout 15s;
|
|
proxy_send_timeout 180s;
|
|
proxy_read_timeout 180s;
|
|
}
|
|
|
|
location /rest/ {
|
|
proxy_pass http://postgrest:3000/;
|
|
proxy_http_version 1.1;
|
|
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;
|
|
}
|
|
|
|
location ^~ /assets/ {
|
|
expires 1y;
|
|
add_header Cache-Control "public, max-age=31536000, immutable";
|
|
try_files $uri =404;
|
|
}
|
|
|
|
location = /index.html {
|
|
add_header Cache-Control "no-cache";
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|