Skip to content

Instantly share code, notes, and snippets.

@genediazjr
Last active November 11, 2015 06:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save genediazjr/4c06c7232d2d06d1e862 to your computer and use it in GitHub Desktop.
Save genediazjr/4c06c7232d2d06d1e862 to your computer and use it in GitHub Desktop.
Nginx w/ PHP on Debian
apt-get install vim nginx php5-fpm php5-xcache
php5-sqlite sqlite3
php5-mysql mysql-server mysql-client
vim /etc/nginx/nginx.conf
-----------------------------------------------------------------------------
server_tokens off;
-----------------------------------------------------------------------------
vim /etc/php5/fpm/php.ini
-----------------------------------------------------------------------------
expose_php = Off
-----------------------------------------------------------------------------
vim /etc/nginx/sites-available/default
-----------------------------------------------------------------------------
server {
listen 80; ## listen for ipv4; this line is default and implied
listen [::]:80 default ipv6only=on; ## listen for ipv6
root /usr/share/nginx/www;
index index.php index.html index.htm;
# Make site accessible from http://localhost/
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to index.html
try_files $uri $uri/ /index.html;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
deny all;
}
# Only for nginx-naxsi : process denied requests
#location /RequestDenied {
# For example, return an error code
#return 418;
#}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
try_files $uri =404;
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;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
}
-----------------------------------------------------------------------------
/etc/init.d/php5-fpm reload
/etc/init.d/nginx reload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment