remove https to http for minio
This commit is contained in:
@@ -163,7 +163,7 @@ http {
|
|||||||
proxy_set_header Connection "";
|
proxy_set_header Connection "";
|
||||||
chunked_transfer_encoding off;
|
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/ {
|
location /minio/ui/ {
|
||||||
@@ -185,11 +185,11 @@ http {
|
|||||||
proxy_set_header Connection "upgrade";
|
proxy_set_header Connection "upgrade";
|
||||||
# Some environments may encounter CORS errors (Kubernetes + Nginx Ingress)
|
# Some environments may encounter CORS errors (Kubernetes + Nginx Ingress)
|
||||||
# Uncomment the following line to set the Origin request to an empty string
|
# 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;
|
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/ {
|
location ~ /.well-known/acme-challenge/ {
|
||||||
|
|||||||
Reference in New Issue
Block a user