Skip to content

Instantly share code, notes, and snippets.

@luissquall
Last active July 4, 2019 22:23
Show Gist options
  • Save luissquall/f0634a0d25b3353da7b4 to your computer and use it in GitHub Desktop.
Save luissquall/f0634a0d25b3353da7b4 to your computer and use it in GitHub Desktop.
server {
listen 80;
listen [::]:80;
server_name {{ domain }};
client_max_body_size 10M;
root {{ webroot }};
index index.php index.html index.htm;
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;
}
# Deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
location ~ /\.ht {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment