From 17f0f70ebd8a368c27a4ea4df644b39eecbf7b89 Mon Sep 17 00:00:00 2001 From: yaso-meth Date: Thu, 25 Jul 2024 12:26:19 +0200 Subject: [PATCH] remove https to http for minio --- nginx/nginx.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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/ {