aboutsummaryrefslogtreecommitdiffstats
path: root/adze_extras/nginx-sites/bnewbold.net
diff options
context:
space:
mode:
Diffstat (limited to 'adze_extras/nginx-sites/bnewbold.net')
-rw-r--r--adze_extras/nginx-sites/bnewbold.net42
1 files changed, 42 insertions, 0 deletions
diff --git a/adze_extras/nginx-sites/bnewbold.net b/adze_extras/nginx-sites/bnewbold.net
new file mode 100644
index 0000000..946f761
--- /dev/null
+++ b/adze_extras/nginx-sites/bnewbold.net
@@ -0,0 +1,42 @@
+
+server {
+ listen 80;
+ listen [::]:80;
+ listen 443 ssl spdy;
+ listen [::]:443 ssl spdy;
+ server_name bnewbold.net www.bnewbold.net next.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";
+ add_header X-Content-Type-Options "nosniff";
+ 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/bnewnet.access.log;
+ error_log /var/log/nginx/bnewnet.error.log;
+
+
+ location / {
+ root /srv/http/bnewbold.net/www/;
+ index index.html index.htm;
+ }
+
+ # Temporary mirror of old photos stuff
+ location /photos/ {
+ root /srv/http/bnewbold.net/adelie_backup/bnewbold.net/;
+ index index.html index.htm;
+ }
+
+ # Let's Encrypt SSL Certs
+ location /.well-known/acme-challenge/ {
+ root /var/www/letsencrypt;
+ autoindex off;
+ }
+
+}
+