server { listen 80; listen [::]:80; listen 443 ssl spdy; listen [::]:443 ssl spdy; server_name static.bnewbold.net; ssl_certificate /etc/letsencrypt/live/bnewbold.net/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/bnewbold.net/privkey.pem; add_header Content-Security-Policy "default-src 'self'; style-src 'self' 'unsafe-inline'"; add_header X-Frame-Options "SAMEORIGIN"; # 'always' if nginx > 1.7.5 add_header X-Content-Type-Options "nosniff"; # 'always' if nginx > 1.7.5 add_header X-Xss-Protection "1"; # Enable STS with one year period (breaks http; optional) #add_header Strict-Transport-Security "max-age=31557600; includeSubDomains"; access_log /var/log/nginx/access.log; location / { root /srv/http/static.bnewbold.net/www/; autoindex on; autoindex_exact_size off; } location /private { deny all; } location /mask { root /srv/http/static.bnewbold.net/www/; autoindex off; } # Let's Encrypt SSL Certs location /.well-known/acme-challenge/ { root /var/www/letsencrypt; autoindex off; } }