hk-planner/frontend/nginx.conf
jtricerolph 872251250e Fix logout (add missing nginx auth proxy) + show name/email in sidebar footer
The /hk-planner/api/auth/ → central auth nginx block was missing, causing
logout to hit the app backend. Also corrects the logout URL and switches from
window.location.href='/' to reload(). Shows name + email in sidebar footer.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-22 11:10:02 +00:00

61 lines
1.6 KiB
Nginx Configuration File

server {
location = /hk-planner/manifest.webmanifest {
default_type application/manifest+json;
add_header Cache-Control "no-cache";
try_files $uri =404;
}
location = /hk-planner/sw.js {
add_header Cache-Control "no-cache";
try_files $uri =404;
}
location = /hk-planner/registerSW.js {
add_header Cache-Control "no-cache";
try_files $uri =404;
}
listen 80;
server_name localhost;
root /usr/share/nginx/html;
location = /hk-planner/manifest.json {
add_header Cache-Control "no-cache";
try_files $uri =404;
}
location /hk-planner/api/auth/ {
proxy_pass http://10.10.10.101:3001/api/auth/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
add_header Cache-Control "no-store";
}
location /hk-planner/api/ {
proxy_pass http://backend:3001/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
add_header Cache-Control "no-store";
}
location /hk-planner/health {
proxy_pass http://backend:3001/health;
}
location ~* /hk-planner/.*\.(js|css|png|ico|svg|woff2?)$ {
expires 1y;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
location /hk-planner/ {
add_header Cache-Control "no-cache" always;
try_files $uri $uri/ /hk-planner/index.html;
}
location = / {
return 301 /hk-planner/;
}
}