dikaio
4/27/2016 - 3:50 AM

server.conf

server {
        listen 80;
        listen [::]:80;
        server_name domain.tld www.domain.tld;
        return 301 https://www.domain.tld$request_uri;
}
server {
        listen 443 ssl http2;
        listen [::]:443 ssl http2;
        server_name www.domain.tld;

        root /srv/www/domain.tld/pub;

        index index.html index.php;

        if ($host = 'domain.tld' ) {
                return 301 https://www.domain.tld$request_uri;
        }

        access_log /srv/www/domain.tld/log/access.log;
        error_log  /srv/www/domain.tld/log/error.log info;

        ssl_session_timeout 1d;
        ssl_session_cache shared:SSL:50m;
        ssl_session_tickets off;

        ssl_certificate     /etc/letsencrypt/live/domain.tld/fullchain.pem;
        ssl_certificate_key /etc/letsencrypt/live/domain.tld/privkey.pem;

        ssl_dhparam /etc/ssl/certs/dhparam.pem;

        ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
        ssl_ciphers 'ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS';
        ssl_prefer_server_ciphers on;

        add_header Strict-Transport-Security max-age=15768000;

        ssl_stapling on;
        ssl_stapling_verify on;

        location ~ /.well-known { allow all; }
        
        location / {
          if ($request_uri ~ ^/(.*)\.html$) {  return 301 /$1;  }
          try_files $uri $uri/ $uri.html $uri.php?$args;
        }
        
        location ~ \.php$ {
          if ($request_uri ~ ^/([^?]*)\.php($|\?)) {  return 301 /$1?$args;  }
          try_files $uri =404;
        }
        
        location = / {expires max;}
        
        location ~* \.(?:ico|asf|asx|wax|wmv|wmx|avi|bmp|class|css|divx|doc|docx|exe|eot|ttf|ttc|otf|woff|mp4|ogg|ogv|webm|gif|gz|gzip|htc|ico|jpeg|jpg|png|js|mdb|mid|mi)$ {
                expires 1y;
                add_header "Access-Control-Allow-Origin" "*";
                add_header Cache-Control "public";
        }
}