You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.0 KiB
71 lines
1.0 KiB
#
|
|
# Site configuration
|
|
#
|
|
|
|
DTP_SITE_NAME=
|
|
DTP_SITE_DESCRIPTION=
|
|
DTP_SITE_DOMAIN=localhost
|
|
DTP_SITE_DOMAIN_KEY=
|
|
DTP_SITE_COMPANY=Digital Telepresence, LLC
|
|
DTP_PASSWORD_SALT=
|
|
|
|
#
|
|
# Mailgun Configuration
|
|
#
|
|
|
|
DTP_MAILGUN_ENABLED=disabled
|
|
MAILGUN_API_KEY=
|
|
MAILGUN_DOMAIN=
|
|
|
|
#
|
|
# MongoDB configuration
|
|
#
|
|
|
|
MONGODB_HOST=localhost:27017
|
|
MONGODB_DATABASE=dtp-webapp
|
|
|
|
#
|
|
# Redis configuration
|
|
#
|
|
|
|
REDIS_HOST=localhost
|
|
REDIS_PORT=6379
|
|
REDIS_PASSWORD=
|
|
|
|
#
|
|
# MinIO configuration
|
|
#
|
|
|
|
MINIO_ENDPOINT=localhost
|
|
MINIO_PORT=9000
|
|
MINIO_USE_SSL=disabled
|
|
MINIO_ACCESS_KEY=dtp-webapp
|
|
MINIO_SECRET_KEY=
|
|
MINIO_IMAGE_BUCKET=webapp-images
|
|
MINIO_VIDEO_BUCKET=webapp-videos
|
|
|
|
#
|
|
# ExpressJS/HTTP configuration
|
|
#
|
|
|
|
HTTP_BIND_ADDRESS=127.0.0.1
|
|
HTTP_BIND_PORT=3000
|
|
HTTP_SESSION_SECRET=
|
|
|
|
#
|
|
# Log configuration
|
|
#
|
|
|
|
DTP_LOG_CONSOLE=enabled
|
|
DTP_LOG_MONGODB=enabled
|
|
DTP_LOG_FILE=enabled
|
|
|
|
DTP_LOG_FILE_PATH=/tmp/dtp-webapp/logs
|
|
DTP_LOG_FILE_NAME_APP=webapp-app.log
|
|
DTP_LOG_FILE_NAME_HTTP=webapp-access.log
|
|
|
|
DTP_LOG_DEBUG=enabled
|
|
DTP_LOG_INFO=enabled
|
|
DTP_LOG_WARN=enabled
|
|
|
|
DTP_LOG_HTTP_FORMAT=combined
|