I plan to begin adding tutorials regarding ham radio. I am currently setting up my web server with data replication for redundancy and this is the reason for the most…
Enable Permalinks in Nginx
The ability to set permalinks is essential to make your urls prettier. Instead of having links with post ids such as /?id=123, it’s much nicer to have /link_to_my_post. To my…
How to Install Nginx, Mariadb, PHP (FEMP Stack) on FreeBSD 14.2
Introduction FreeBSD, Nginx, Mariadb, and PHP (FEMP stack) is a collection of open-source applications that enable the development, hosting, and delivery of dynamic web applications on a server. FreeBSD works…
SSL Certificate Renewal on FreeBSD
To renew Let’s Encrypt certificates on FreeBSD, use certbot renew or certbot certonly –force-renew -d yourdomain.com after installing Certbot with pkg install py39-certbot. You can also test the renewal process with certbot renew –dry-run. Here’s a more…