Created
September 28, 2016 01:51
-
-
Save bookiu/a1f2c6f5f56b1a5b9a59ee0abcaa2be2 to your computer and use it in GitHub Desktop.
nginx https site config template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
server_name servername; | |
location / { | |
rewrite (.*) https://$host$1 permanent; | |
} | |
access_log /path/to/access.log; | |
error_log /path/to/error.log error; | |
} | |
server { | |
listen 443 ssl http2; | |
server_name servername; | |
root /path/to/document/root; | |
index index.php index.html; | |
# ssl config | |
ssl_certificate /path/to/cert; | |
ssl_certificate_key /path/to/private/key; | |
ssl_dhparam /path/to/dhparams.pem; | |
ssl_prefer_server_ciphers on; | |
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; | |
ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA'; | |
ssl_session_cache shared:SSL:10m; | |
ssl_session_timeout 10m; | |
# browser security | |
add_header Strict-Transport-Security 'max-age=31536000; preload'; | |
add_header X-Frame-Options DENY; | |
add_header X-Content-Type-Options nosniff; | |
add_header X-Xss-Protection 1; | |
location / { | |
try_files $uri $uri/ /index.php; | |
} | |
location ~* \.php$ { | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; | |
fastcgi_pass unix:/var/running/php5-fpm.sock; | |
fastcgi_index index.php; | |
include fastcgi.conf; | |
} | |
access_log /path/to/access.log; | |
error_log /path/to/error.log error; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment