Skip to content

Instantly share code, notes, and snippets.

@erkantaylan
Created November 13, 2014 17:11
Show Gist options
  • Save erkantaylan/c139282efd65fda613d8 to your computer and use it in GitHub Desktop.
Save erkantaylan/c139282efd65fda613d8 to your computer and use it in GitHub Desktop.
php5-nginx default config file [sites-available]
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.html index.htm;
server_name localhost;
location / {
try_files $uri $uri/ =404;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment