diff --git a/nginx/nginx.conf b/nginx/nginx.conf index f63eec32..350c9765 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -163,7 +163,7 @@ http { proxy_set_header Connection ""; chunked_transfer_encoding off; - proxy_pass https://MIH-Minio:9000; # This uses the upstream directive definition to load balance + proxy_pass http://MIH-Minio:9000; # This uses the upstream directive definition to load balance } location /minio/ui/ { @@ -185,11 +185,11 @@ http { proxy_set_header Connection "upgrade"; # Some environments may encounter CORS errors (Kubernetes + Nginx Ingress) # Uncomment the following line to set the Origin request to an empty string - # proxy_set_header Origin ''; + proxy_set_header Origin ''; chunked_transfer_encoding off; - proxy_pass https://MIH-Minio:9001; # This uses the upstream directive definition to load balance + proxy_pass http://MIH-Minio:9001; # This uses the upstream directive definition to load balance } location ~ /.well-known/acme-challenge/ {