- add custom init script for ./docker-entrypoint.d/ to setup resolver from local /etc/resolv.conf - custom init script also removes default.conf, and removes minio route if NO_MINIO_ROUTE=1 is set - assign template vars to nginx vars to avoid conflicts when interpolating - k8s: remove initContainers and volumes, now handled via custom init script in image
10 lines
175 B
Plaintext
10 lines
175 B
Plaintext
location /data/ {
|
|
proxy_pass http://minio:9000/btrix-data/;
|
|
proxy_set_header Host "minio:9000";
|
|
proxy_redirect off;
|
|
proxy_buffering off;
|
|
|
|
client_max_body_size 0;
|
|
}
|
|
|