No description
Find a file
2025-11-27 22:38:53 +10:30
astro Add 404 error page 2025-11-02 21:47:34 +10:30
docker Remove certbot request config 2025-11-01 21:41:55 +10:30
docs Add some missing index page titles 2025-11-27 22:38:53 +10:30
.gitignore Obsidian conversion script 2025-09-11 22:25:09 +09:30
.gitmodules Switch to Hugo Book theme 2025-03-09 02:11:55 +10:30
.tmuxinator.yml tmuxinator config 2025-03-28 23:49:00 +10:30
convert_obsidian.sh Obsidian conversion script 2025-09-11 22:25:09 +09:30
docker-compose.yml Fix container name 2025-11-01 21:44:04 +10:30
push.sh Update push script 2025-11-01 21:59:54 +10:30
README.md Convert to docker compose 2025-09-03 23:32:03 +09:30

Notes server

Set up hugo and build HTML

# Install hugo.
sudo apt install hugo

# Build the HTML.
cd hugo
hugo

Prepare and run server

# Set access credentials.
./passwd.sh username password

# Run the service.
docker compose up -d

Changing the login credentials

# Overwrite the htpasswd file with new user credentials.
./passwd.sh username password

# (Rebuild the image to copy the new credentials.)
docker compose down && docker compose up -d --build