Skip to content

Instantly share code, notes, and snippets.

@Maff-
Created March 7, 2012 22:22
Show Gist options
  • Save Maff-/1996656 to your computer and use it in GitHub Desktop.
Save Maff-/1996656 to your computer and use it in GitHub Desktop.
nginx 'catch all' config
server {
#listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default ipv6only=on; ## listen for ipv6
root /var/www/test;
index index.php index.html index.htm;
server_name test.localhost;
location / {
try_files $uri $uri/ /index.php;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
#error_page 500 502 503 504 /50x.html;
#location = /50x.html {
# root /usr/share/nginx/www;
#}
# pass the PHP scripts to FastCGI server listening on unix socket
#
location ~ \.php$ {
try_files $uri /index.php;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment