12 Commits a20f6add5b ... d88f7913bc

Auteur SHA1 Message Date
  anderx d88f7913bc Merge branch 'dev' il y a 11 mois
  anderx 8418855425 生产修改测试 il y a 11 mois
  anderx 221551e474 生产修改测试 il y a 11 mois
  anderx bd108c02fb Merge remote-tracking branch 'origin/master' il y a 11 mois
  anderx 5e44ccd7f3 Merge remote-tracking branch 'origin/master' il y a 11 mois
  Kevin 71b35431d5 更新 default.conf il y a 11 mois
  anderx dc25b9653e 生产修改测试 il y a 11 mois
  Kevin 00150d3e1c 更新 default.conf il y a 11 mois
  anderx 09cb6a8301 nginx添加 il y a 11 mois
  anderx 56ea090062 Merge remote-tracking branch 'origin/master' il y a 11 mois
  anderx 7864753ee6 nginx添加 il y a 11 mois
  hunankede 66fa33e6f1 新建文件 Dockerfile il y a 11 mois
1 fichiers modifiés avec 3 ajouts et 2 suppressions
  1. 3 2
      nginx/conf.d/default.conf

+ 3 - 2
nginx/conf.d/default.conf

@@ -2,18 +2,19 @@ server {
         listen       8080;
         server_name  _;
         charset utf-8;
+        
         location / {
             root   /app;
             try_files $uri $uri/ /index.html;
             index  index.html index.htm;
         }
 
-        location /gw/ {
+        location /gw {
             proxy_set_header Host $http_host;
             proxy_set_header X-Real-IP $remote_addr;
             proxy_set_header REMOTE-HOST $remote_addr;
             proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
-            proxy_pass http://127.0.0.1:8880;
+            proxy_pass http://api-gateway:8080;
         }
 
         error_page   500 502 503 504  /50x.html;