server { listen 80; server_name _; charset utf-8; resolver 127.0.0.11 valid=10s ipv6=off; add_header X-Content-Type-Options "nosniff" always; add_header X-Frame-Options "SAMEORIGIN" always; add_header Referrer-Policy "strict-origin-when-cross-origin" always; root /usr/share/nginx/html; index index.html; gzip on; gzip_types text/plain text/css application/javascript application/json; gzip_min_length 1024; location ~* \.html$ { expires -1; add_header Cache-Control "no-store, no-cache, must-revalidate"; } location ~* \.(js|css)$ { expires 1h; add_header Cache-Control "public, no-transform"; } location /api/ { set $upstream http://tksupport-api:3000; proxy_pass $upstream$request_uri; 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 /static/ { expires 1h; add_header Cache-Control "public, no-transform"; } location / { try_files $uri $uri/ /index.html; } location /health { access_log off; return 200 'ok'; add_header Content-Type text/plain; } }