cszhzleo commited on
Commit
341c517
·
verified ·
1 Parent(s): a68e7db

Create default.conf

Browse files
Files changed (1) hide show
  1. default.conf +14 -0
default.conf ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ server {
2
+ listen 7860;
3
+ listen [::]:7860;
4
+ server_name localhost;
5
+
6
+ #access_log /var/log/nginx/host.access.log main;
7
+
8
+ location / {
9
+ #root /usr/share/nginx/html;
10
+ #index index.html index.htm;
11
+ proxy_pass http://35.94.145.197:3000/;
12
+ }
13
+
14
+ }