Skip to content

Instantly share code, notes, and snippets.

@HachemiH
Last active January 18, 2016 20:50
Show Gist options
  • Save HachemiH/32b0b04471dff2392c85 to your computer and use it in GitHub Desktop.
Save HachemiH/32b0b04471dff2392c85 to your computer and use it in GitHub Desktop.
Default file Nginx
server {
listen 80;
server_name your_site_name.com;
root /usr/share/nginx/html;
index index.php index.html index.htm index.nginx-debian.html;
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment