2026-05-28 15:40:52 +08:00
|
|
|
server {
|
|
|
|
|
listen 80;
|
|
|
|
|
server_name _;
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
index index.html;
|
|
|
|
|
|
2026-05-28 15:45:00 +08:00
|
|
|
# Landing page
|
|
|
|
|
location = / {
|
|
|
|
|
try_files /index.html =404;
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-28 15:56:13 +08:00
|
|
|
# /resume/1, /demo/assets/style.css — paths with trailing slash
|
2026-05-28 15:45:00 +08:00
|
|
|
location ~ ^/([^/]+)/ {
|
|
|
|
|
try_files $uri $uri/ /$1/index.html =404;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# /resume (no trailing slash) → 301 redirect to /resume/
|
2026-05-28 15:56:13 +08:00
|
|
|
location ~ ^/([^/]+)$ {
|
2026-05-28 15:45:00 +08:00
|
|
|
try_files $uri $uri/ =404;
|
2026-05-28 15:40:52 +08:00
|
|
|
}
|
|
|
|
|
}
|