Skip to content

Instantly share code, notes, and snippets.

@indapublic
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indapublic/c73278934208846fc8bb to your computer and use it in GitHub Desktop.
Save indapublic/c73278934208846fc8bb to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name localhost;
root /var/www/default/;
access_log /var/log/nginx/default.access.log main;
location / {
include /usr/local/etc/nginx/conf.d/php-fpm;
}
location = /info {
allow 127.0.0.1;
deny all;
rewrite (.*) /.info.php
}
error_page 404 /404.html;
error_page 403 /403.html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment