animeic-cd 1 год назад
Родитель
Сommit
41acdf5c4f
2 измененных файлов с 15 добавлено и 1 удалено
  1. 15 0
      nginx/conf.d/cr.conf
  2. 0 1
      nginx/conf.d/default.conf

+ 15 - 0
nginx/conf.d/cr.conf

@@ -0,0 +1,15 @@
+server{
+    listen 80;
+    listen [::]:80;
+    server_name localhost;
+
+    location /projects/ {
+        proxy_pass http://127.0.0.1:8085/;
+        proxy_set_header Host $host:$server_port; #远程主机 IP:PORT
+        proxy_set_header X-Real-PORT $remote_port; #远程端口
+        proxy_set_header X-Real-IP $remote_addr; #远程地址
+        proxy_set_header X-Forwarded-For $remote_addr; #远程真实地址     
+    }
+
+
+}

+ 0 - 1
nginx/conf.d/default.conf

@@ -2,7 +2,6 @@ server {
     listen       80;
     listen  [::]:80;
     server_name  localhost;
-    client_body_buffer_size 2048m;
 
    #  error_page   500 502 503 504  /50x.html;
    #  location = /50x.html {