7f16552762
(right now is not working, we are waiting open service feature)
74 lines
2.1 KiB
Plaintext
74 lines
2.1 KiB
Plaintext
####
|
|
# DEV OPTIONS
|
|
####
|
|
|
|
DEV_DOCKER_ALWAYS_BUILD=false
|
|
|
|
####
|
|
# DEVICEHUB
|
|
####
|
|
|
|
DEVICEHUB_DOMAIN=localhost
|
|
DEVICEHUB_PORT=8001
|
|
DEMO=true
|
|
# note that with DEBUG=true, logs are more verbose (include tracebacks)
|
|
DEBUG=true
|
|
DPP=false
|
|
|
|
STATIC_ROOT=/tmp/static/
|
|
MEDIA_ROOT=/tmp/media/
|
|
EMAIL_HOST="mail.example.org"
|
|
EMAIL_HOST_USER="fillme_noreply"
|
|
EMAIL_HOST_PASSWORD="fillme_passwd"
|
|
EMAIL_PORT=587
|
|
EMAIL_USE_TLS=true
|
|
EMAIL_BACKEND="django.core.mail.backends.smtp.EmailBackend"
|
|
EMAIL_FILE_PATH="/tmp/app-messages"
|
|
ENABLE_EMAIL=false
|
|
PREDEFINED_TOKEN='5018dd65-9abd-4a62-8896-80f34ac66150'
|
|
DEVICEHUB_ALLOWED_HOSTS=${DEVICEHUB_DOMAIN},${DEVICEHUB_DOMAIN}:${DEVICEHUB_PORT},127.0.0.1,127.0.0.1:${DEVICEHUB_PORT}
|
|
# TODO review these vars
|
|
#SNAPSHOTS_DIR=/path/to/TODO
|
|
#EVIDENCES_DIR=/path/to/TODO
|
|
#DEMO_IDHUB_DOMAIN='idhub.example.org'
|
|
|
|
####
|
|
# IDHUB
|
|
####
|
|
|
|
IDHUB_ENABLED=false
|
|
|
|
IDHUB_DOMAIN=localhost
|
|
IDHUB_PORT=9001
|
|
IDHUB_ALLOWED_HOSTS=${IDHUB_DOMAIN},${IDHUB_DOMAIN}:${IDHUB_PORT},127.0.0.1,127.0.0.1:${IDHUB_PORT}
|
|
IDHUB_TIME_ZONE='Europe/Madrid'
|
|
#IDHUB_SECRET_KEY='uncomment-it-and-fill-this'
|
|
# enable dev flags when DEVELOPMENT deployment
|
|
# adapt to your domain in a production/reverse proxy env
|
|
IDHUB_CSRF_TRUSTED_ORIGINS='https://idhub.example.org'
|
|
|
|
# fill this section with your email credentials
|
|
IDHUB_DEFAULT_FROM_EMAIL="user@example.org"
|
|
IDHUB_EMAIL_HOST="smtp.example.org"
|
|
IDHUB_EMAIL_HOST_USER="smtp_user"
|
|
IDHUB_EMAIL_HOST_PASSWORD="smtp_passwd"
|
|
IDHUB_EMAIL_PORT=25
|
|
IDHUB_EMAIL_USE_TLS=True
|
|
IDHUB_EMAIL_BACKEND="django.core.mail.backends.smtp.EmailBackend"
|
|
|
|
# replace with production data
|
|
# this is used when IDHUB_DEPLOYMENT is not equal to DEVELOPMENT
|
|
IDHUB_ADMIN_USER='admin'
|
|
IDHUB_ADMIN_PASSWD='admin'
|
|
IDHUB_ADMIN_EMAIL='admin@example.org'
|
|
|
|
# this option needs to be set to 'n' to be able to make work idhub in docker
|
|
# by default it is set to 'y' to facilitate idhub dev when outside docker
|
|
IDHUB_SYNC_ORG_DEV='n'
|
|
|
|
# TODO that is only for testing
|
|
IDHUB_ENABLE_EMAIL=false
|
|
IDHUB_ENABLE_2FACTOR_AUTH=false
|
|
IDHUB_ENABLE_DOMAIN_CHECKER=false
|
|
IDHUB_PREDEFINED_TOKEN='27f944ce-3d58-4f48-b068-e4aa95f97c95'
|