remove https to http for minio

This commit is contained in:
2024-07-25 12:26:19 +02:00
parent 10d5cbeadb
commit 17f0f70ebd

View File

@@ -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/ {