No description
- HTML 100%
| fonts | ||
| index.html | ||
| README.md | ||
Lageriet
Placeholder site for lageriet.org.
Stack
- Static HTML with self-hosted Libre Caslon Text font
- Served by Caddy on fismen.no (Incus)
Deployment
1. Clone the repo on fismen.no
SSH into the server and clone the repo into a suitable location:
sudo mkdir -p /var/www/lageriet
sudo chown $USER /var/www/lageriet
git clone ssh://git@code.bas.es:443/arne/lageriet.git /var/www/lageriet
2. Add a Caddy site block
In the Caddyfile (typically /etc/caddy/Caddyfile), add:
lageriet.org {
root * /var/www/lageriet
file_server
}
If www.lageriet.org should also resolve, add a redirect:
www.lageriet.org {
redir https://lageriet.org{uri} permanent
}
3. Reload Caddy
caddy reload --config /etc/caddy/Caddyfile
Or if Caddy is managed by systemd:
systemctl reload caddy
Caddy will automatically provision a TLS certificate via Let's Encrypt once DNS for lageriet.org is pointed at fismen.no.
Updating the site
cd /var/www/lageriet && git pull
No build step needed — Caddy serves the files directly.