Skip to content

Instantly share code, notes, and snippets.

@hainp2604
Last active August 29, 2015 14:07
Show Gist options
  • Save hainp2604/ed81608bc6a74ed585c1 to your computer and use it in GitHub Desktop.
Save hainp2604/ed81608bc6a74ed585c1 to your computer and use it in GitHub Desktop.
Nginx PHP config template
server {
listen 80;
server_name domain;
root /home/www/ten-thu-muc;
index index.php index.html index.htm;
access_log /var/log/nginx/domain.access.log;
error_log /var/log/nginx/domain.error.log;
location / {
try_files $uri $uri/ /index.php?$args =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
try_files $uri =404;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment