Updated Nginx configuration with Let's Encrypt headers
I’ve added a new security_headers.conf file in /etc/nginx/ to keep all the HTTPS headers in one place: ...
I’ve added a new security_headers.conf file in /etc/nginx/ to keep all the HTTPS headers in one place: ...
After I learned about Mozilla’s tool to test how secure your site is, I ran it on my site https://observatory.mozilla.org/analyze.html?host=brege.org and received an “F”. ...
Add the following to the main server block in your nginx config: location ~ ^/(?:feed|feeds|rss) { return 301 /post/index.xml; } Now people can go to https://brege.org/rss to find the RSS feed. This rewrite rule could be expanded to match other common feed URI guesses.