Skip to content

Instantly share code, notes, and snippets.

@mosufy
Created January 20, 2015 05:40
Show Gist options
  • Save mosufy/42aa235f9056e44256d2 to your computer and use it in GitHub Desktop.
Save mosufy/42aa235f9056e44256d2 to your computer and use it in GitHub Desktop.
Default Server Block for NGINX in LEMP Stack Configuration
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.php index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.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