From 10a34e16567eac880571819fb764532b1400a615 Mon Sep 17 00:00:00 2001 From: Ravind Kumar Date: Mon, 25 Sep 2023 11:54:17 -0400 Subject: [PATCH] Update setup-nginx-proxy-with-minio.rst --- source/integrations/setup-nginx-proxy-with-minio.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/integrations/setup-nginx-proxy-with-minio.rst b/source/integrations/setup-nginx-proxy-with-minio.rst index 835ed8c5..664d4f8f 100644 --- a/source/integrations/setup-nginx-proxy-with-minio.rst +++ b/source/integrations/setup-nginx-proxy-with-minio.rst @@ -104,6 +104,9 @@ There are two models for proxying requests to the MinIO Server API and the MinIO proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; 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 ''; chunked_transfer_encoding off;