Altoplace

Technology & Life Notes

This is the place where I enjoy sharing my technology and life interests. I use Altoplace to save notes for future reference. Hopefully, others will find them helpful. Please use my notes as a guide; I cannot guarantee that they will work for you.

Add Comments to Your Hugo Site with Comentario

After switching to Hugo to create my website, I was missing a commenting system. Actually, When I was using WordPress, I never did receive very many comments. I still want to give folks the ability to leave comments. I wanted a simple, self-hosted solution that would work with my VPS. My VPS provider does not permit root access, so that was an additional restriction. My VPS does support using a “rootless” version of Docker, and I learned that Comentario supports using a Docker image.

Add Analytics to Your Hugo Site with Umami

I have been experimenting with website development and Hugo for sometime. It would be nice to see which posts are being viewed. Since this is a hobby site for me (non-commercial), I don’t want to pay for a commercial, third party service to track my website usage. I wanted to find a simple, self-hosted solution that provides basic analytic data. Also, I am using a managed VPS that does not allow root access. They do support Docker, working in a rootless mode. I needed to find a Docker solution that would work in my environment.

Add Comments to Your Hugo Site with Remark42

After I moved from WordPress to Hugo, I was missing a commenting system. Actually, I never did receive that many comments when using WordPress, but I still want to give folks the ability to leave comments. I was looking for a simple, self-hosted solution that would work with my VPS. My VPS provider does not permit root access, so that was an additional restriction. My VPS does support using a “rootless” version of Docker, and I learned that Remark42 will work with it.

Welcome!

My site is powered by Hugo, the Zen theme, and Vultr.

I am learning how to develop websites. Thus, the look and feel of this website will change over time, but I am trying to maintain (and grow) the content. For now, this is just a “retirement” hobby for me.

Tip

You can view my About page to learn more about Altoplace.

My First Life Post

This post is not exciting. I am still creating my Hugo infrastructure. I am adding a Life category to write about non-technical topics.

I have fully converted my WordPress website to Hugo. I have added some basic styling, which I will tweak over time. But I believe that I have a fully functional blog. Building a website with WordPress seemed to be easier than using Hugo. One plus was the built in commenting system. However, the vast majority of comments were spam or boarding on being spam.

Happy New Year 2023

Wishing you a very happy and blessed 2023 New Year!

I wanted to take a moment to welcome you to the new, updated 2023 Altoplace. I have been doing a lot of behind the scenes work on Altoplace, fully converting it to use Hugo for building websites. I am using the Coderon theme, which provides a foundation for my website. It uses a very solid HTML5 compliant code base that provides a lot of website functionality. Over time, I hope to spruce up the website design and style. But for now, I believe that it is a very functional blogging site.

How to Configure the Bash Shell on macOS

Recent versions of macOS now use zsh as the default command line shell. I typically use the bash shell on Linux servers, so I prefer using it on my Mac. This post is going to describe how to switch from the zsh shell to the bash shell.

Before Starting

You should be familiar with using the macOS Terminal command line.

I am using Homebrew to install the latest bash version. The version that comes with macOS is very old, and it’s not being updated because of licensing issues. Homebrew is very easy to install; please refer to their website for instructions.

How to install WordPress on macOS

I have been creating a Website Development Environment on my Mac, which is currently running macOS Sonoma. I have added a MAMP (LAMP when running on Linux) stack to support various website development tools, such as WordPress. A MAMP stack is based on the macOS operating system, the Apache 2 web server, the MySQL database management system, and the PHP scripting language. You can easily install a MAMP stack by installing a MAMP App as described by the WordPress Codex, Installing WordPress Locally on Your Mac with MAMP. However, I chose to manually install my MAMP stack because I wanted to learn more about the technology.

Configure Apache and PHP-FPM on macOS

This post describes how to install and configure Apache and PHP-FPM to create a macOS local web development environment. I also describe how to use Dnsmasq, which adds a local DNS caching server to support using virtual hosts.

I am using Homebrew to install most of the software. Please go to their site for installation instructions.

This post is just about Apache, PHP, and Dnsmasq; I wrote about MySQL in a separate post. In this post, I also describe some tools that I wrote to manage Apache, PHP, and dnsmasq processes.

Connect macOS to Linux via SSH

I am going to show you show you how I use SSH to log into a Linux server from macOS. I am going to use my VPS host as an example. I like having shell access to my web host. In addition to SSH, you can also use scp to transfer files. Once you have set up SSH, scp should work automatically if you so desire to use it. By setup, I mean being able to log in to the server without having to enter a password every time.