2026-08-27 18:41:10 +08:00
|
|
|
server {
|
|
|
|
|
listen 80;
|
|
|
|
|
server_name localhost;
|
2026-08-27 18:57:51 +08:00
|
|
|
absolute_redirect off;
|
2026-08-27 18:41:10 +08:00
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
index index.html;
|
|
|
|
|
|
2026-08-27 18:48:41 +08:00
|
|
|
# 共享静态资源
|
|
|
|
|
location /css/ {
|
|
|
|
|
alias /usr/share/nginx/html/css/;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
location /img/ {
|
|
|
|
|
alias /usr/share/nginx/html/img/;
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-27 18:41:10 +08:00
|
|
|
# 主简历
|
|
|
|
|
location /resume/ {
|
|
|
|
|
alias /usr/share/nginx/html/resume/;
|
|
|
|
|
try_files $uri $uri/ /resume/index.html;
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-27 18:48:41 +08:00
|
|
|
# 其他简历导航页
|
2026-08-27 18:41:10 +08:00
|
|
|
location /other/ {
|
|
|
|
|
alias /usr/share/nginx/html/other/;
|
|
|
|
|
try_files $uri $uri/ /other/index.html;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# 基础架构工程师简历
|
|
|
|
|
location /other/infra-engineer/ {
|
|
|
|
|
alias /usr/share/nginx/html/other/infra-engineer/;
|
|
|
|
|
try_files $uri $uri/ /other/infra-engineer/index.html;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# 网络安全工程师简历
|
|
|
|
|
location /other/security-engineer/ {
|
|
|
|
|
alias /usr/share/nginx/html/other/security-engineer/;
|
|
|
|
|
try_files $uri $uri/ /other/security-engineer/index.html;
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-27 18:48:41 +08:00
|
|
|
# 根路径重定向到主简历
|
2026-08-27 18:57:51 +08:00
|
|
|
location = / {
|
2026-08-27 18:41:10 +08:00
|
|
|
return 301 /resume/;
|
|
|
|
|
}
|
|
|
|
|
}
|