No description
Find a file
2025-11-01 21:41:55 +10:30
astro Theming 2025-11-01 21:33:17 +10:30
docker Remove certbot request config 2025-11-01 21:41:55 +10:30
docs Move overview out of index 2025-11-01 21:33:35 +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 Remove hugo, switch to astro 2025-11-01 21:39:20 +10:30
push.sh Remove hugo, switch to astro 2025-11-01 21:39:20 +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