Skip to content

Instantly share code, notes, and snippets.

@luissquall
Created April 26, 2016 18:15
Show Gist options
  • Save luissquall/0ef12c2447398df2b489cf9130324672 to your computer and use it in GitHub Desktop.
Save luissquall/0ef12c2447398df2b489cf9130324672 to your computer and use it in GitHub Desktop.
server {
listen 80;
listen [::]:80;
server_name {{ domain }};
client_max_body_size 10M;
root /var/www/{{ domain }}/webroot/;
index index.php;
access_log /var/log/nginx/{{ domain }}.access.log;
error_log /var/log/nginx/{{ domain }}.error.log;
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ \.php$ {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment