Skip to content

Instantly share code, notes, and snippets.

@nbpalomino
Created July 2, 2015 03:20
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 nbpalomino/d8c17a9c081227e718f2 to your computer and use it in GitHub Desktop.
Save nbpalomino/d8c17a9c081227e718f2 to your computer and use it in GitHub Desktop.
nginx Rewrite PHP
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /home/amautas/www/public;
index index.php index.html index.htm;
# Make site accessible from http://localhost/
server_name www.amautas.net;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ @pretyurls;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
# Pretty URLS
location @pretyurls {
rewrite ^/ /index.php?$query_string last;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment