mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2025-12-31 19:47:25 +01:00
15 lines
360 B
Plaintext
15 lines
360 B
Plaintext
# https://nginx.org/en/docs/http/ngx_http_core_module.html
|
|
client_max_body_size 10M;
|
|
client_body_buffer_size 10M;
|
|
server_tokens off;
|
|
|
|
# https://nginx.org/en/docs/http/ngx_http_fastcgi_module.html
|
|
fastcgi_buffers 32 16K;
|
|
|
|
# https://nginx.org/en/docs/http/ngx_http_gzip_module.html
|
|
gzip on;
|
|
gzip_comp_level 2;
|
|
gzip_min_length 1M;
|
|
gzip_proxied any;
|
|
gzip_types *;
|