1
0
Fork 0
mirror of synced 2024-05-19 11:53:53 +12:00

Fixing an issue found with nginx + minio.

This commit is contained in:
mike12345567 2022-02-25 15:54:39 +00:00
parent 390e3e627f
commit 45cc611e1e

View file

@ -76,6 +76,7 @@ http {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_connect_timeout 300;
proxy_http_version 1.1;
@ -91,4 +92,4 @@ http {
gzip off;
gzip_comp_level 4;
}
}
}