auto-deploy-demo/server/templates/nginx/main.conf.tpl

29 lines
818 B
Smarty
Raw Permalink Normal View History

# Auto-generated by auto-deploy-demo
# Do not edit manually
server {
listen {{PORT}};
server_name {{SERVER_NAME}};
# 管理后台
location / {
proxy_pass http://127.0.0.1:{{MANAGER_PORT}};
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# API接口
location /api/ {
proxy_pass http://127.0.0.1:{{MANAGER_PORT}}/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;
proxy_set_header X-Forwarded-Proto $scheme;
}
# 项目路由 - 由系统动态生成
{{PROJECT_LOCATIONS}}
}