Forum Discussion

Vladimir_Shishk's avatar
Vladimir_Shishk
Icon for Altocumulus rankAltocumulus
Jul 13, 2021

F5 configuration for minio http server and chunking

Good day.

I have a S3 minio http server behind my Big-IP VE. This server uses chunking for transferring files and have problems with tranfer files in more than one chunk.

The reccomendations for Nginx configuration as a reverse proxy are https://docs.min.io/docs/setup-nginx-proxy-with-minio.html and listed below.

The main statements are "proxy_set_header Connection "" " (I suppose it may be solved by an iRule inserting the corresponding header) and "chunked_tranfer_enconding off" - what should I do?).

What should I do to match the BigIP configuration to Nginx?

Thank you.

client_max_body_size 0;
 # To disable buffering
 proxy_buffering off;

 location / {
   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;
   # Default is HTTP/1, keepalive is only enabled in HTTP/1.1
   proxy_http_version 1.1;
   proxy_set_header Connection "";
   chunked_transfer_encoding off;

No RepliesBe the first to reply