CalebCometML commited on
Commit
cef32e4
·
1 Parent(s): 6f6d1ec

Update nginx.conf

Browse files
Files changed (1) hide show
  1. nginx.conf +10 -7
nginx.conf CHANGED
@@ -1,10 +1,13 @@
1
  http {
2
- server {
3
- location /kangas/ {
4
- proxy_pass http://localhost:7640/kangas/
5
- }
6
- location / {
7
- proxy_pass http://localhost:7840/
8
- }
9
  }
 
 
 
 
10
  }
 
1
  http {
2
+ server {
3
+ listen 7860;
4
+ server_name calebcometml-kangas-demo.hf.space;
5
+
6
+ location /kangas/ {
7
+ proxy_pass http://localhost:7640/kangas/
 
8
  }
9
+ location / {
10
+ proxy_pass http://localhost:7840/
11
+ }
12
+ }
13
  }