debug
Browse files- data/nginx.conf +9 -2
data/nginx.conf
CHANGED
|
@@ -2,7 +2,7 @@ server {
|
|
| 2 |
listen 7860;
|
| 3 |
listen [::]:7860;
|
| 4 |
|
| 5 |
-
server_name
|
| 6 |
|
| 7 |
location / {
|
| 8 |
proxy_pass http://localhost:5678;
|
|
@@ -16,8 +16,15 @@ server {
|
|
| 16 |
proxy_read_timeout 86400;
|
| 17 |
proxy_redirect off;
|
| 18 |
}
|
|
|
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
proxy_pass http://localhost:7000;
|
| 22 |
proxy_http_version 1.1;
|
| 23 |
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
| 2 |
listen 7860;
|
| 3 |
listen [::]:7860;
|
| 4 |
|
| 5 |
+
server_name agent-one.ai.ucode.id;
|
| 6 |
|
| 7 |
location / {
|
| 8 |
proxy_pass http://localhost:5678;
|
|
|
|
| 16 |
proxy_read_timeout 86400;
|
| 17 |
proxy_redirect off;
|
| 18 |
}
|
| 19 |
+
}
|
| 20 |
|
| 21 |
+
server {
|
| 22 |
+
listen 7860;
|
| 23 |
+
listen [::]:7860;
|
| 24 |
+
|
| 25 |
+
server_name ucode-agent.hf.space;
|
| 26 |
+
|
| 27 |
+
location / {
|
| 28 |
proxy_pass http://localhost:7000;
|
| 29 |
proxy_http_version 1.1;
|
| 30 |
proxy_set_header Upgrade $http_upgrade;
|