gateway/nginx.conf.gateway

189 lines
7.2 KiB
Plaintext
Raw Normal View History

2025-06-22 14:46:32 +08:00
2025-06-28 17:52:44 +08:00
error_log /var/log/nginx/error.log debug;
2025-06-22 14:46:32 +08:00
pid /var/run/nginx.pid;
events {
worker_connections 1024;
use epoll;
multi_accept on;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
2025-06-24 00:18:46 +08:00
keepalive_timeout 65;
2025-06-24 00:56:09 +08:00
# Gzip 压缩1
2025-06-24 00:18:46 +08:00
gzip on;
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;
# --- 后端服务定义 (Upstreams) ---
# 根据您的描述更新了端口号
# Sys 系统 API
2025-06-22 14:46:32 +08:00
upstream sys_api {
2025-06-29 00:04:06 +08:00
server sys-api:19902;
2025-06-22 14:46:32 +08:00
}
2025-06-24 00:18:46 +08:00
# Lmg 系统 API
2025-06-22 14:46:32 +08:00
upstream lmg_api {
2025-06-24 00:18:46 +08:00
server lmg-api:19903;
2025-06-22 14:46:32 +08:00
}
2025-06-24 00:18:46 +08:00
# Sys 系统 UI
upstream sys_ui {
server sys-ui:80;
2025-06-22 14:46:32 +08:00
}
2025-06-24 00:18:46 +08:00
# Lmg 系统 UI
upstream lmg_ui {
server lmg-ui:80;
}
# --- 统一网关服务 ---
2025-06-22 14:46:32 +08:00
server {
2025-06-28 17:52:44 +08:00
listen 8000 ssl; # 使用 http2 提升性能
2025-06-24 00:28:34 +08:00
server_name 106.52.199.114; # 替换为您的域名或IP
2025-06-24 00:18:46 +08:00
# --- SSL 配置 ---
2025-06-28 22:44:07 +08:00
ssl_certificate /etc/nginx/certs/gateway.crt;
ssl_certificate_key /etc/nginx/certs/gateway.key;
2025-06-24 00:18:46 +08:00
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers on;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
# --- 统一代理头配置 ---
# 这些头对后端服务正确识别客户端信息至关重要
2025-06-22 14:46:32 +08:00
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;
2025-06-24 00:18:46 +08:00
proxy_set_header X-Forwarded-Host $host;
2025-06-22 14:46:32 +08:00
2025-06-24 00:18:46 +08:00
# --- 路由规则 (Locations) ---
2025-06-28 14:16:22 +08:00
# 1. 认证中心 (IdentityServer4) 路由 - 专门处理并移除 'auth' 前缀
2025-06-29 00:04:06 +08:00
# 认证服务代理
location /auth/ {
# 关键 1: 移除路径中的 /auth/ 前缀
proxy_pass https://sys_api/; # 末尾的 / 确保路径替换
proxy_ssl_server_name on;
proxy_ssl_session_reuse off;
proxy_ssl_verify off;
# 关键 2: 覆盖 Host 头,模拟 Vite 的 changeOrigin=true
proxy_set_header Host $proxy_host; # 设置为目标地址的 Host (192.168.1.100:19901)
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header Authorization $http_authorization; # 传递 Authorization 头
# 其他标准代理头
2025-06-28 14:16:22 +08:00
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2025-06-29 00:04:06 +08:00
# 关键 4: 重写后端返回的 Location 头(解决重定向端口丢失)
2025-06-29 14:30:44 +08:00
proxy_redirect https://sys-api:19902/ https://$host:$server_port/auth/;
2025-06-28 14:16:22 +08:00
}
2025-06-22 14:46:32 +08:00
2025-06-29 00:29:41 +08:00
location /connect/ {
# 关键 1: 移除路径中的 /auth/ 前缀
proxy_pass https://sys_api/connect/; # 末尾的 / 确保路径替换
proxy_ssl_server_name on;
proxy_ssl_session_reuse off;
proxy_ssl_verify off;
# 关键 2: 覆盖 Host 头,模拟 Vite 的 changeOrigin=true
proxy_set_header Host $proxy_host; # 设置为目标地址的 Host (192.168.1.100:19901)
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header Authorization $http_authorization; # 传递 Authorization 头
# 其他标准代理头
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2025-06-29 14:30:44 +08:00
proxy_redirect https://sys-api:19902/connect/ https://$host:$server_port/connect/;
2025-06-29 00:29:41 +08:00
}
location /Account/ {
# 关键 1: 移除路径中的 /auth/ 前缀
proxy_pass https://sys_api/Account/; # 末尾的 / 确保路径替换
proxy_ssl_server_name on;
proxy_ssl_session_reuse off;
proxy_ssl_verify off;
# 关键 2: 覆盖 Host 头,模拟 Vite 的 changeOrigin=true
proxy_set_header Host $proxy_host; # 设置为目标地址的 Host (192.168.1.100:19901)
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host:$server_port;
proxy_set_header Authorization $http_authorization; # 传递 Authorization 头
# 其他标准代理头
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
2025-06-29 01:36:27 +08:00
2025-06-29 14:30:44 +08:00
proxy_redirect https://sys-api:19902/Account/ https://$host:$server_port/Account/;
2025-06-29 00:29:41 +08:00
2025-06-22 14:46:32 +08:00
}
2025-06-24 00:18:46 +08:00
# 2. Sys API 路由
location /api/sys/ {
2025-06-29 00:04:06 +08:00
proxy_pass https://sys_api/api/;
proxy_ssl_server_name on;
proxy_ssl_session_reuse off;
proxy_ssl_verify off;
proxy_set_header Authorization $http_authorization; # 传递 Authorization 头
2025-06-29 14:30:44 +08:00
proxy_redirect http://sys-api:19903/ https://$host:$server_port/;
2025-06-22 14:46:32 +08:00
}
2025-06-24 00:18:46 +08:00
# 3. Lmg API 路由
location /api/lmg/ {
2025-06-29 00:29:41 +08:00
proxy_pass https://lmg_api/api/;
2025-06-29 00:04:06 +08:00
proxy_ssl_server_name on;
proxy_ssl_session_reuse off;
proxy_ssl_verify off;
proxy_set_header Authorization $http_authorization; # 传递 Authorization 头
2025-06-29 14:30:44 +08:00
proxy_redirect http://lmg-api:19903/ https://$host:$server_port/;
2025-06-22 14:46:32 +08:00
}
2025-06-24 00:18:46 +08:00
# 4. Lmg UI 路由
# IMPORTANT: lmg-ui 的前端路由基础路径(base path)需要配置为 /lmg/
location /lmg/ {
# 将 /lmg/path -> http://lmg_ui/path
proxy_pass http://lmg_ui/;
2025-06-29 14:30:44 +08:00
proxy_redirect http://lmg_ui/ https://$host:$server_port/;
2025-06-24 00:18:46 +08:00
}
2025-06-29 01:36:27 +08:00
# 6. OAuth 回调地址路由
# 这个回调是给客户端(UI)的,这里我们假设它由 sys-ui 处理
location = /Callback {
# 将 /Callback -> http://sys_ui/Callback
proxy_pass http://sys_ui;
2025-06-29 14:30:44 +08:00
proxy_redirect http://sys_ui/ https://$host:$server_port/;
2025-06-29 14:36:24 +08:00
proxy_redirect https://sys_ui/ https://$host:$server_port/;
2025-06-29 01:36:27 +08:00
}
2025-06-24 00:18:46 +08:00
# 5. Sys UI 和根路径路由
# IMPORTANT: sys-ui 的前端路由基础路径(base path)需要配置为 /
# 或者如果你想用 /sys/ 访问,则前端基础路径配 /sys/
location / {
# 根路径 / 直接访问 sys_ui
# 将 /path -> http://sys_ui/path
proxy_pass http://sys_ui;
2025-06-29 14:30:44 +08:00
proxy_redirect http://sys_ui/ https://$host:$server_port/;
2025-06-29 14:36:24 +08:00
proxy_redirect https://sys_ui/ https://$host:$server_port/;
2025-06-22 14:46:32 +08:00
}
2025-06-23 00:24:53 +08:00
2025-06-22 14:46:32 +08:00
}
}