b2b2c-minio.conf 526 B

12345678910111213141516
  1. server {
  2. listen 80;
  3. server_name b2b2c-minio.mall4j.com;
  4. location / {
  5. proxy_set_header X-Real-IP $remote_addr;
  6. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  7. proxy_set_header X-Forwarded-Proto $scheme;
  8. proxy_set_header Host $http_host;
  9. proxy_connect_timeout 300;
  10. # Default is HTTP/1, keepalive is only enabled in HTTP/1.1
  11. proxy_http_version 1.1;
  12. proxy_set_header Connection "";
  13. proxy_pass http://mall4cloud-minio:9000; }
  14. }