Update mailcow.conf

Added Minio
master
Edwin Lyon 4 years ago committed by GitHub
parent 46be23acf3
commit 761ca9fb53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      nginx/mailcow.conf

@ -41,6 +41,18 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
client_max_body_size 0;
}
location /minio/ {
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;
proxy_set_header Connection "";
chunked_transfer_encoding off;
proxy_pass http://localhost:9443;
}
}
server {

Loading…
Cancel
Save