Last active
September 15, 2016 07:09
-
-
Save jtadeulopes/7237731 to your computer and use it in GitHub Desktop.
Default nginx server
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
upstream project { | |
server unix:///var/tmp/project.sock; | |
} | |
server { | |
listen 80; | |
server_name localhost; | |
root /var/www/project/current/public; | |
if (-f /var/www/project/current/public/system/maintenance.html) { | |
return 503; | |
} | |
error_page 503 @maintenance; | |
location @maintenance { | |
rewrite ^(.*)$ /system/maintenance.html last; | |
break; | |
} | |
location / { | |
if (!-f $request_filename) { | |
proxy_pass http://project; | |
} | |
proxy_redirect off; | |
proxy_set_header Host $host:$proxy_port; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
client_max_body_size 10m; | |
client_body_buffer_size 128k; | |
proxy_connect_timeout 90; | |
proxy_send_timeout 90; | |
proxy_read_timeout 90; | |
proxy_buffer_size 4k; | |
proxy_buffers 4 32k; | |
proxy_busy_buffers_size 64k; | |
proxy_temp_file_write_size 64k; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment