mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
180ab897ec
Signed-off-by: David Mehren <git@herrmehren.de>
19 lines
443 B
Bash
19 lines
443 B
Bash
# Base settings
|
|
HD_BASE_URL="https://hedgedoc2.localhost"
|
|
HD_SESSION_SECRET="session_secret"
|
|
|
|
# Database settings
|
|
HD_DATABASE_TYPE="postgres"
|
|
HD_DATABASE_HOST="db"
|
|
HD_DATABASE_PORT="5432"
|
|
HD_DATABASE_NAME="hedgedoc"
|
|
HD_DATABASE_USER="hedgedoc"
|
|
HD_DATABASE_PASS="password"
|
|
|
|
# Uploads
|
|
HD_MEDIA_BACKEND="filesystem"
|
|
HD_MEDIA_BACKEND_FILESYSTEM_UPLOAD_PATH="uploads/"
|
|
|
|
# Auth
|
|
HD_AUTH_LOCAL_ENABLE_LOGIN="true"
|
|
HD_AUTH_LOCAL_ENABLE_REGISTER="true"
|