Skip to content

Instantly share code, notes, and snippets.

@pankpan
Last active May 23, 2016 17:27
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 pankpan/d2ae7201ffc0761bcb97fde312049d4d to your computer and use it in GitHub Desktop.
Save pankpan/d2ae7201ffc0761bcb97fde312049d4d to your computer and use it in GitHub Desktop.
nginx default.conf sample
server {
listen 80;
listen 443 ssl;
server_name yourhost.com;
ssl_certificate /etc/nginx/ssl/cert_chain.pem;
ssl_certificate_key /etc/nginx/ssl/privkey.pem;
root /var/www/html;
charset UTF-8;
access_log /var/log/nginx/log/host.access.log main;
location / {
index index.php index.html index.htm;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
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