Files
admin-ui/ngnix.conf

63 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

2026-05-20 17:55:34 +08:00
# Nginx 静态文件服务 + 智能代理
2026-05-26 09:17:26 +08:00
# HTTP 重定向到 HTTPS
server {
listen 80;
server_name _;
return 301 https://$host$request_uri;
}
2026-05-20 17:55:34 +08:00
server {
# 静态资源根目录dist
2026-05-20 17:55:34 +08:00
root /usr/share/nginx/html;
index index.html;
# SSL 配置
listen 443 ssl;
2026-05-26 11:28:45 +08:00
ssl_certificate /etc/nginx/ssl/scs1779764972146_redpowerfuture.com_server.crt;
ssl_certificate_key /etc/nginx/ssl/scs1779764972146_redpowerfuture.com_server.key;
2026-05-20 17:55:34 +08:00
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers HIGH:!aNULL:!MD5;
# 根路径默认进入网页端
location = / {
return 302 /web/index.html;
}
# 网页端public/web/index.html -> dist/web/index.html
location /web/ {
alias /usr/share/nginx/html/web/;
try_files $uri $uri/ /web/index.html;
}
# 后台管理端dist/index.html前缀 /sys/
location /sys/ {
alias /usr/share/nginx/html/;
try_files $uri $uri/ /sys/index.html;
}
2026-05-20 17:55:34 +08:00
# 1. 先尝试作为静态文件查找
location / {
try_files $uri $uri/ @proxy;
}
# 2. 无法找到的请求API路径代理到后端
location @proxy {
# 判断 URI 最后一段是否有扩展名
# 有扩展名返回 404无扩展名则代理
2026-05-20 17:55:34 +08:00
if ($uri ~ \.[^./]+$) {
return 404;
}
2026-05-20 17:55:34 +08:00
proxy_pass http://116.204.74.41:8000;
proxy_http_version 1.1;
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;
proxy_connect_timeout 30s;
proxy_send_timeout 30s;
proxy_read_timeout 30s;
}
}