2f67e9e2b9
Add Dockerfile.prod, docker-compose.prod.yml, OpenResty example, and migration plan for Baota to 1Panel + Compose deployment.
71 lines
2.2 KiB
Plaintext
71 lines
2.2 KiB
Plaintext
# 1Panel OpenResty — Nexus reverse proxy (paste into site custom config)
|
|
# Domain: api.synaglobal.vip
|
|
# Upstream: Nexus Docker on 127.0.0.1:8600 (docker-compose.prod.yml)
|
|
#
|
|
# SSL: configure in 1Panel UI (Let's Encrypt). This snippet assumes HTTPS server block.
|
|
|
|
upstream nexus_api {
|
|
server 127.0.0.1:8600;
|
|
keepalive 32;
|
|
}
|
|
|
|
# WebSocket log without query string (JWT must not hit access_log)
|
|
log_format nexus_ws '$remote_addr - [$time_local] "$request_method $uri" $status $body_bytes_sent';
|
|
|
|
client_max_body_size 100m;
|
|
|
|
location /api/ {
|
|
proxy_pass http://nexus_api;
|
|
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_read_timeout 300s;
|
|
proxy_send_timeout 300s;
|
|
proxy_connect_timeout 10s;
|
|
}
|
|
|
|
location /ws/ {
|
|
access_log /www/sites/api.synaglobal.vip/log/ws.log nexus_ws;
|
|
proxy_pass http://nexus_api;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
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_read_timeout 3600s;
|
|
proxy_send_timeout 3600s;
|
|
}
|
|
|
|
location /health {
|
|
proxy_pass http://nexus_api;
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
location /app/ {
|
|
proxy_pass http://nexus_api;
|
|
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;
|
|
}
|
|
|
|
location /agent/ {
|
|
proxy_pass http://nexus_api;
|
|
proxy_set_header Host $host;
|
|
}
|
|
|
|
# Fallback: install mode or misc routes served by FastAPI
|
|
location / {
|
|
proxy_pass http://nexus_api;
|
|
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;
|
|
}
|