diff options
Diffstat (limited to 'configs')
-rw-r--r-- | configs/nginx/kvmd.ctx-server.conf | 10 | ||||
-rw-r--r-- | configs/nginx/loc-bigpost.conf | 4 |
2 files changed, 6 insertions, 8 deletions
diff --git a/configs/nginx/kvmd.ctx-server.conf b/configs/nginx/kvmd.ctx-server.conf index 40fdcc3e..335849bb 100644 --- a/configs/nginx/kvmd.ctx-server.conf +++ b/configs/nginx/kvmd.ctx-server.conf @@ -64,10 +64,7 @@ location /api/hid/print { rewrite ^/api/hid/print\?(.*)$ /hid/print?$1 break; proxy_pass http://kvmd; include /etc/kvmd/nginx/loc-proxy.conf; - limit_rate 6250k; - limit_rate_after 50k; - client_max_body_size 0; - proxy_request_buffering off; + include /etc/kvmd/nginx/loc-bigpost.conf; auth_request off; } @@ -96,10 +93,7 @@ location /api/msd/write { rewrite ^/api/msd/write\?(.*)$ /msd/write?$1 break; proxy_pass http://kvmd; include /etc/kvmd/nginx/loc-proxy.conf; - limit_rate 6250k; - limit_rate_after 50k; - client_max_body_size 0; - proxy_request_buffering off; + include /etc/kvmd/nginx/loc-bigpost.conf; auth_request off; } diff --git a/configs/nginx/loc-bigpost.conf b/configs/nginx/loc-bigpost.conf new file mode 100644 index 00000000..ebd37a6b --- /dev/null +++ b/configs/nginx/loc-bigpost.conf @@ -0,0 +1,4 @@ +limit_rate 6250k; +limit_rate_after 50k; +client_max_body_size 0; +proxy_request_buffering off; |