From 95b73daa36b23565a8566f71f9b202d3459b685f Mon Sep 17 00:00:00 2001 From: Sam Chudnick Date: Sun, 25 Jun 2023 09:52:36 -0400 Subject: Initial Commit --- data/freshrss/freshrss.conf | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 data/freshrss/freshrss.conf (limited to 'data/freshrss') diff --git a/data/freshrss/freshrss.conf b/data/freshrss/freshrss.conf new file mode 100644 index 0000000..eecc2e3 --- /dev/null +++ b/data/freshrss/freshrss.conf @@ -0,0 +1,38 @@ +server { + listen 443 ssl; + server_name rss.chudnick.com; + + ssl_certificate /etc/letsencrypt/live/chudnick.com/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/chudnick.com/privkey.pem; + add_header Strict-Transport-Security "max-age=31536000" always; + ssl_stapling on; + ssl_stapling_verify on; + + # Security / XSS Mitigation Headers + add_header X-Frame-Options "SAMEORIGIN"; + add_header X-XSS-Protection "1; mode=block"; + add_header X-Content-Type-Options "nosniff"; + + # authelia + include /etc/nginx/snippets/authelia-location.conf; + + location / { + #authelia + include /etc/nginx/snippets/proxy.conf; + include /etc/nginx/snippets/authelia-authrequest.conf; + + proxy_pass http://127.0.0.1:8090/; + + # Forward the Authorization header for the Google Reader API. + proxy_set_header Authorization $http_authorization; + proxy_pass_header Authorization; + } + +} + +server { + listen 80; + listen [::]:80; + server_name rss.chudnick.com; + return 301 https://$host$request_uri; +} -- cgit v1.2.3