Last active
June 23, 2016 05:47
-
-
Save ecstasy2/74da089e617f6e9211dd00146054cfb1 to your computer and use it in GitHub Desktop.
default nginx proxy_params
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
proxy_set_header Host $http_host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
client_max_body_size 100M; | |
client_body_buffer_size 1m; | |
proxy_intercept_errors on; | |
proxy_buffering on; | |
proxy_buffer_size 128k; | |
proxy_buffers 256 16k; | |
proxy_busy_buffers_size 256k; | |
proxy_temp_file_write_size 256k; | |
proxy_max_temp_file_size 0; | |
proxy_read_timeout 300; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment