CrowdTLS-server/.env.sample

20 lines
753 B
Text
Raw Permalink Normal View History

2023-06-07 14:35:48 -07:00
# POSTGRES_* variables are used both to initially configure the
# crowdtls postgresql database and to later access the data from
# crowdtls execution.
#
# POSTGRES_PASSWORD is used for database authentication and should
# be secure or randomized (optionally using the method in README.md).
POSTGRES_CONTAINER=crowdtls-db
POSTGRES_USER=crowdtls
POSTGRES_DB=crowdtls
POSTGRES_PASSWORD=
# CROWDTLS_*_WEB_PORT variables are used to determine what
# port the web interface is served on within the container (INTERNAL)
# and what port this will map to on the host (HOST).
#
# If you're using a dockerized reverse proxy, you may want to remove
# the port mapping entirely within docker-compose.yml.
CROWDTLS_HOST_WEB_PORT=1337
CROWDTLS_INTERNAL_WEB_PORT=1337