Clarify port use for nginx

This commit is contained in:
Pim van Pelt
2025-08-25 17:40:03 +02:00
parent 6ecc5d7784
commit a044cb86bd

View File

@@ -18,7 +18,7 @@ go build -o tesseract-genconf ./tesseract/genconf/
```yaml
listen:
- "[::]:16420"
- "[::]:8080"
roots: /etc/tesseract/roots.pem
logs:
- shortname: example2025h1
@@ -55,7 +55,8 @@ mkdir -p /var/lib/tesseract/example2025h1/data
./tesseract-genconf -c config.yaml gen-nginx
```
You can symlink the generated $monitoringprefix.conf files from `/etc/nginx/sites-enabled/`.
The port from the main `listen:` field will be used in the NGINX server blocks (in our case
`:8080`). You can symlink the generated $monitoringprefix.conf files from `/etc/nginx/sites-enabled/`.
7. **Generate root certificates (optional):**
```bash