Enhance Nginx configuration for better performance and analytics (#7179)
This commit is contained in:
commit
5702733a53
2 changed files with 6 additions and 0 deletions
|
|
@ -13,6 +13,9 @@ charset utf-8;
|
|||
# Set max upload to 2048M
|
||||
client_max_body_size 2048M;
|
||||
|
||||
# Set client body buffer to handle Sentinel payloads in memory
|
||||
client_body_buffer_size 256k;
|
||||
|
||||
# Healthchecks: Set /healthcheck to be the healthcheck URL
|
||||
location /healthcheck {
|
||||
access_log off;
|
||||
|
|
|
|||
|
|
@ -13,6 +13,9 @@ charset utf-8;
|
|||
# Set max upload to 2048M
|
||||
client_max_body_size 2048M;
|
||||
|
||||
# Set client body buffer to handle Sentinel payloads in memory
|
||||
client_body_buffer_size 256k;
|
||||
|
||||
# Healthchecks: Set /healthcheck to be the healthcheck URL
|
||||
location /healthcheck {
|
||||
access_log off;
|
||||
|
|
|
|||
Loading…
Reference in a new issue