Created
November 22, 2012 04:30
-
-
Save tatat/4129417 to your computer and use it in GitHub Desktop.
これでいいのかわからないNginxリバースプロキシ設定メモ (serverディレクティブで `include /path/to/proxy.conf;` する用)
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_redirect off; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-Host $host; | |
proxy_set_header X-Forwarded-Server $host; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
client_max_body_size 32m; | |
client_body_buffer_size 128k; | |
proxy_connect_timeout 90; | |
proxy_send_timeout 90; | |
proxy_read_timeout 90; | |
proxy_buffers 32 4k; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment