mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
e07cd62596
This rewrite follows the principles of https://diataxis.fr/ Co-authored-by: Erik Michelson <github@erik.michelson.eu> Signed-off-by: Philip Molares <philip.molares@udo.edu> Signed-off-by: Erik Michelson <github@erik.michelson.eu>
19 lines
No EOL
449 B
Bash
19 lines
No EOL
449 B
Bash
# General settings
|
|
HD_BASE_URL="https://md.example.com"
|
|
HD_SESSION_SECRET="change_me_in_production"
|
|
|
|
# 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" |