Files
slide/nginx.conf
T
wonder 9f35d89961
Deploy Slides / build-and-deploy (push) Successful in 1m50s
fix: add nginx SPA fallback to resolve deck 404 on direct URL access
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-28 15:40:52 +08:00

11 lines
181 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ $uri/index.html /index.html;
}
}