brege.org now on GitHub

Earlier I added the hugo source files for this website on GitHub. Take a look! https://github.com/brege/brege.org

October 12, 2016 16 words

Nginx rewrite for RSS

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.

October 11, 2016 44 words

Automatic renewal of Let's Encrypt Certificates

Let’s Encrypt certificates need to be renewed every three months. The Arch Wiki has good documentation on automating the renewal process with systemd. ...

October 11, 2016 63 words

Building brege.org

Overview brege.org is deployed with the following services: Namecheap - DNS Registrar Let’s Encrypt - Free SSL certificates Digital Ocean - Droplets for $5 a month brege.org makes use of the following tools: Nginx - Fast reverse proxy Debian Jessie - Operating system running on our DO droplet Hugo - Static site generator ...

October 10, 2016 1020 words