animeic 1 năm trước cách đây
mục cha
commit
f3aa2e50f0
2 tập tin đã thay đổi với 11 bổ sung4 xóa
  1. 3 3
      docker-compose.yaml
  2. 8 1
      nginx/conf.d/default.conf

+ 3 - 3
docker-compose.yaml

@@ -16,8 +16,8 @@ services:
     volumes:
       - ./nginx/conf.d:/etc/nginx/conf.d
       - ./nginx/www:/usr/share/nginx/html
-    depends_on:
-      - pay
+    # depends_on:
+    #   - pay
 
   # bus消息中间件
   pay-bus:
@@ -55,7 +55,7 @@ services:
 
   # 支付服务
   pay:
-    image: registry.cn-chengdu.aliyuncs.com/infish/pack-comm-pay:v1.0.0
+    image: registry.cn-chengdu.aliyuncs.com/infish/pack-pay:v1.0.0
     restart: always
     depends_on:
       - pay-bus

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

@@ -14,7 +14,14 @@ server {
 
     # 支付接口
     location /pay/ {
-       proxy_pass  http://pay:8888/pay/;
+        # proxy_set_header Host $host;
+        # proxy_set_header X-Forwarded-For $remote_addr;
+        # proxy_set_header X-Forwarded-Host $server_name;
+        # proxy_set_header X-Real-IP $remote_addr;
+        real_client_ip = $realip_remote_addr;
+        proxy_pass  http://pay:8888/pay/;
     }   
 
 }
+
+