Skip to content

Instantly share code, notes, and snippets.

@HachemiH
Created April 8, 2016 09:55
Show Gist options
  • Save HachemiH/704e0efff107575694aaf33159c20d5a to your computer and use it in GitHub Desktop.
Save HachemiH/704e0efff107575694aaf33159c20d5a to your computer and use it in GitHub Desktop.
# Default server configuration
#
server {
listen 80;
# server_name default_server;
listen 443 ssl;
server_name toto.fr www.toto.fr;
ssl_certificate /etc/letsencrypt/live/toto.fr/fullchain.pem;
ssl_trusted_certificate /etc/letsencrypt/live/toto.fr/chain.pem;
ssl_certificate_key /etc/letsencrypt/live/toto.fr/privkey.pem;
ssl_session_timeout 1d;
ssl_session_cache shared:SSL:50m;
#ssl_session_tickets off;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
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';
add_header Strict-Transport-Security max-age=15768000;
ssl_stapling on;
ssl_stapling_verify on;
ssl_dhparam /opt/letsencrypt/dhparam.pem;
root /home/toto/www;
index index.php index.html index.htm index.nginx-debian.html;
location / {
try_files $uri $uri/ /index.php;
}
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;
}
location ~ /\.ht {
deny all;
}
location /phpmyadmin {
alias /usr/share/phpmyadmin;
index index.php index.html index.htm;
}
}
#server {
#listen 80;
#server_name www.toto.fr;
#return 301 https://$host$request_uri;
#}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment