3 posts about #workflow
Use a custom TLS cert with caddy
Caddy will accept an already issued tls certificate, instead of generating its own, by using the tls directive:
dillonhafer.com {
tls /etc/ssl/certs/dillonhafer.com.pem /etc/ssl/private/dillonhafer.com.key.pem
}
Keyboard shortcuts for VS Code search modes
VS Code search supports match case, match whole word, and use regular expression modes. These modes can toggled by pressing cmd + option + c, w, or r for case, word, and regular expression respectively.