XIVLauncherRemoteOTP/.env.example

14 lines
596 B
Text

# Web interface authentication password
WEB_PASSWORD=admin
# Encryption key for securing stored OTP secrets
# 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
# Optional: The IP address or hostname of this Docker host to show in the Firewall Helper.
# If not set, the hostname used to access the web interface will be used.
# FIREWALL_HOST_IP=192.168.1.100