Explorar el Código

添加 'default.conf'

sifu-gogs hace 2 años
padre
commit
488bfe5930
Se han modificado 1 ficheros con 15 adiciones y 0 borrados
  1. 15 0
      default.conf

+ 15 - 0
default.conf

@@ -0,0 +1,15 @@
+server {
+    #red
+    listen       8680;
+    server_name  localhost;
+
+    location / {
+        root   html;
+        index  index.html index.htm;
+    }
+    
+    location ~ /prod-api/ {           
+        proxy_pass http://localhost:8182;
+    }
+    
+}