'some' changes

This commit is contained in:
Chris Sanden
2026-05-03 23:05:22 +02:00
parent 08a14b3ab2
commit 907fa18841
21 changed files with 2253 additions and 220 deletions

View File

@@ -0,0 +1,21 @@
# Signup Confirmation Page
This serves a very small static confirmation page with `nginx`.
## Run
```bash
docker compose up -d
```
It will be available on port `8080` on the VPS.
## Files
- `docker-compose.yml`: starts `nginx:alpine`
- `site/index.html`: the page shown after email confirmation
## Notes
- If you already have a reverse proxy on the VPS, point your domain or subdomain to `http://localhost:8080`.
- If you want this container to bind directly to port `80`, change `8080:80` to `80:80` in `docker-compose.yml`.