Skip to content

Instantly share code, notes, and snippets.

@freedmo
Last active February 9, 2018 15:19
Show Gist options
  • Save freedmo/08a016c6bfcacc6f9476343ccb8c421a to your computer and use it in GitHub Desktop.
Save freedmo/08a016c6bfcacc6f9476343ccb8c421a to your computer and use it in GitHub Desktop.
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name server_domain_or_IP;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment