1
0
forked from x/ContextOS
This commit is contained in:
IT 老营长 @云轩领航-创始人 2025-02-16 08:24:04 +08:00
parent 956b5affb2
commit 2dc75bec5c
27 changed files with 198 additions and 0 deletions

View File

@ -0,0 +1,9 @@
location / {
include header/proxy.conf;
proxy_pass http://2025-beijing-1;
}
location /space/ {
include header/proxy.conf;
include header/websocket.conf;
proxy_pass http://2025-beijing-1;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl;
server_name 2025-beijing-1.shylinux.com;
include portal/2025-beijing-1/location.conf;
}
server {
listen 80;
server_name 2025-beijing-1.shylinux.com;
include location/tohttps.conf;
}

View File

@ -0,0 +1,3 @@
upstream 2025-beijing-1 {
server 127.0.0.1:30006;
}

View File

@ -0,0 +1,9 @@
location / {
include header/proxy.conf;
proxy_pass http://2025-beijing-2;
}
location /space/ {
include header/proxy.conf;
include header/websocket.conf;
proxy_pass http://2025-beijing-2;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl;
server_name 2025-beijing-2.shylinux.com;
include portal/2025-beijing-2/location.conf;
}
server {
listen 80;
server_name 2025-beijing-2.shylinux.com;
include location/tohttps.conf;
}

View File

@ -0,0 +1,3 @@
upstream 2025-beijing-2 {
server 127.0.0.1:30007;
}

View File

@ -0,0 +1,9 @@
location / {
include header/proxy.conf;
proxy_pass http://2025-beijing-3;
}
location /space/ {
include header/proxy.conf;
include header/websocket.conf;
proxy_pass http://2025-beijing-3;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl;
server_name 2025-beijing-3.shylinux.com;
include portal/2025-beijing-3/location.conf;
}
server {
listen 80;
server_name 2025-beijing-3.shylinux.com;
include location/tohttps.conf;
}

View File

@ -0,0 +1,3 @@
upstream 2025-beijing-3 {
server 127.0.0.1:30008;
}

View File

@ -0,0 +1,9 @@
location / {
include header/proxy.conf;
proxy_pass http://2025-guangzhou-1;
}
location /space/ {
include header/proxy.conf;
include header/websocket.conf;
proxy_pass http://2025-guangzhou-1;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl;
server_name 2025-guangzhou-1.shylinux.com;
include portal/2025-guangzhou-1/location.conf;
}
server {
listen 80;
server_name 2025-guangzhou-1.shylinux.com;
include location/tohttps.conf;
}

View File

@ -0,0 +1,3 @@
upstream 2025-guangzhou-1 {
server 127.0.0.1:30000;
}

View File

@ -0,0 +1,9 @@
location / {
include header/proxy.conf;
proxy_pass http://2025-guangzhou-2;
}
location /space/ {
include header/proxy.conf;
include header/websocket.conf;
proxy_pass http://2025-guangzhou-2;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl;
server_name 2025-guangzhou-2.shylinux.com;
include portal/2025-guangzhou-2/location.conf;
}
server {
listen 80;
server_name 2025-guangzhou-2.shylinux.com;
include location/tohttps.conf;
}

View File

@ -0,0 +1,3 @@
upstream 2025-guangzhou-2 {
server 127.0.0.1:30001;
}

View File

@ -0,0 +1,9 @@
location / {
include header/proxy.conf;
proxy_pass http://2025-guangzhou-3;
}
location /space/ {
include header/proxy.conf;
include header/websocket.conf;
proxy_pass http://2025-guangzhou-3;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl;
server_name 2025-guangzhou-3.shylinux.com;
include portal/2025-guangzhou-3/location.conf;
}
server {
listen 80;
server_name 2025-guangzhou-3.shylinux.com;
include location/tohttps.conf;
}

View File

@ -0,0 +1,3 @@
upstream 2025-guangzhou-3 {
server 127.0.0.1:30002;
}

View File

@ -0,0 +1,9 @@
location / {
include header/proxy.conf;
proxy_pass http://2025-shanghai-1;
}
location /space/ {
include header/proxy.conf;
include header/websocket.conf;
proxy_pass http://2025-shanghai-1;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl;
server_name 2025-shanghai-1.shylinux.com;
include portal/2025-shanghai-1/location.conf;
}
server {
listen 80;
server_name 2025-shanghai-1.shylinux.com;
include location/tohttps.conf;
}

View File

@ -0,0 +1,3 @@
upstream 2025-shanghai-1 {
server 127.0.0.1:30003;
}

View File

@ -0,0 +1,9 @@
location / {
include header/proxy.conf;
proxy_pass http://2025-shanghai-2;
}
location /space/ {
include header/proxy.conf;
include header/websocket.conf;
proxy_pass http://2025-shanghai-2;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl;
server_name 2025-shanghai-2.shylinux.com;
include portal/2025-shanghai-2/location.conf;
}
server {
listen 80;
server_name 2025-shanghai-2.shylinux.com;
include location/tohttps.conf;
}

View File

@ -0,0 +1,3 @@
upstream 2025-shanghai-2 {
server 127.0.0.1:30004;
}

View File

@ -0,0 +1,9 @@
location / {
include header/proxy.conf;
proxy_pass http://2025-shanghai-3;
}
location /space/ {
include header/proxy.conf;
include header/websocket.conf;
proxy_pass http://2025-shanghai-3;
}

View File

@ -0,0 +1,10 @@
server {
listen 443 ssl;
server_name 2025-shanghai-3.shylinux.com;
include portal/2025-shanghai-3/location.conf;
}
server {
listen 80;
server_name 2025-shanghai-3.shylinux.com;
include location/tohttps.conf;
}

View File

@ -0,0 +1,3 @@
upstream 2025-shanghai-3 {
server 127.0.0.1:30005;
}