mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-08-11 12:22:24 +00:00
56 lines
1.6 KiB
Nginx Configuration File
56 lines
1.6 KiB
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
# Gzip compression
|
|
gzip on;
|
|
gzip_types text/plain text/css application/json application/javascript text/xml application/xml text/javascript image/svg+xml;
|
|
gzip_min_length 256;
|
|
|
|
# Docker internal DNS resolver — re-resolves upstream when backend
|
|
# container restarts with a new IP (prevents stale DNS cache).
|
|
# Note: valid=10s means up to 10s stale DNS on backend restart.
|
|
resolver 127.0.0.11 valid=10s ipv6=off;
|
|
set $upstream_backend "http://goclaw:18790";
|
|
|
|
# Cache static assets
|
|
location /assets/ {
|
|
expires 1y;
|
|
add_header Cache-Control "public, immutable";
|
|
}
|
|
|
|
# WebSocket proxy
|
|
location /ws {
|
|
proxy_pass $upstream_backend;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
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_read_timeout 86400s;
|
|
}
|
|
|
|
# API proxy
|
|
location /v1/ {
|
|
client_max_body_size 500M;
|
|
proxy_pass $upstream_backend;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
}
|
|
|
|
# Health check proxy
|
|
location /health {
|
|
proxy_pass $upstream_backend;
|
|
}
|
|
|
|
# SPA fallback — serve index.html for all other routes
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|