January 4, 2021

Meta

This site was created with hugo using the charaka theme, is served using nginx and hosted on a DigitalOcean droplet.

Deployed like so:

hugo && rsync -avc public/ ocean:~/blog

nginx configuration:

server {
    listen 443 ssl;
    server_name chriswh.co.uk;

    root /home/chriswheeldon/blog/;
    index index.html;

    location / {
            try_files $uri $uri/ =404;
    }

    # SSL stuff
    # ...
}