This is the Hugo source for rhunter.org, currently using the Minimo theme.
I use SSH
and rsync
to deploy the site to NFSN using the following bash
script:
#!/bin/sh
USER= # my username
HOST=ssh.phx.nearlyfreespeech.net
DIR=/home/public/
rsync -avz --delete public/ ${USER}@${HOST}:/${DIR} --exclude=/.well-known
exit 0
The --exclude
option prevents my Let's Encrypt directory (.well-known
) from being deleted every time I deploy.