Created
June 5, 2018 11:06
-
-
Save darkamenosa/7096644e0d2a6406b7d18f075b174f3c to your computer and use it in GitHub Desktop.
Nginx reverse proxy
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
server { | |
server_name example.com; | |
location / { | |
client_max_body_size 10m; | |
client_body_buffer_size 128k; | |
proxy_send_timeout 90; | |
proxy_read_timeout 90; | |
proxy_buffer_size 128k; | |
proxy_buffers 4 256k; | |
proxy_busy_buffers_size 256k; | |
proxy_temp_file_write_size 256k; | |
proxy_connect_timeout 30s; | |
proxy_pass http://127.0.0.1; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment