add WEB_PORT environment variable to allow configurable web interface port mapping

This commit is contained in:
CPTN Cosmo 2026-04-18 16:39:25 +02:00
parent 40c5cbef1c
commit 000aa5710b
2 changed files with 4 additions and 1 deletions

View file

@ -5,3 +5,6 @@ WEB_PASSWORD=admin
# You MUST change this for a production deployment!
# Generate a secure key using: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
ENCRYPTION_KEY=CHANGE_ME_TO_A_VALID_FERNET_KEY
# The local port that the web interface will bind to
WEB_PORT=8814