1
0
forked from x/ContextOS
This commit is contained in:
IT 老营长 @云轩领航-创始人 2025-02-16 08:55:42 +08:00
parent 311f283c5f
commit 334c3c3371
3 changed files with 22 additions and 0 deletions

View File

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

View File

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

View File

@ -0,0 +1,3 @@
upstream 2022-ContextOS {
server 127.0.0.1:9022;
}