Files
wonder a8c884d23b
Deploy Resume / deploy (push) Successful in 20s
feat: 添加央国企版简历 /soe 路由及独立样式
- 新增 soe/index.html、soe/resume.css(复制主简历及其样式,样式独立维护)
- nginx.conf 注册 /soe/ 路由
- Dockerfile 增加 COPY soe/

Co-Authored-By: Claude Code <noreply@anthropic.com>
2026-09-23 20:01:05 +08:00

58 lines
1.4 KiB
Nginx Configuration File

server {
listen 80;
server_name localhost;
absolute_redirect off;
root /usr/share/nginx/html;
index index.html;
# 共享静态资源
location /css/ {
alias /usr/share/nginx/html/css/;
}
location /img/ {
alias /usr/share/nginx/html/img/;
}
# 主简历
location /resume/ {
alias /usr/share/nginx/html/resume/;
try_files $uri $uri/ /resume/index.html;
}
# 央国企简历
location /soe/ {
alias /usr/share/nginx/html/soe/;
try_files $uri $uri/ /soe/index.html;
}
# 其他简历导航页
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;
}
# 纯文本简历(便于复制粘贴到招聘系统)
location = /txt {
default_type "text/plain; charset=utf-8";
alias /usr/share/nginx/html/resume.txt;
}
# 根路径重定向到主简历
location = / {
return 301 /resume/;
}
}