2019-10-30 15:38:39 +01:00
|
|
|
# This file contains your instance configuration
|
|
|
|
# Some documentation about these variables is available here:
|
|
|
|
# https://docs.joinplu.me/environment/
|
|
|
|
|
|
|
|
## GENERAL SETTINGS ##
|
|
|
|
|
|
|
|
# The directory containing database migrations
|
|
|
|
# For Postgres: migrations/postgres
|
|
|
|
# For SQlite: migrations/sqlite
|
|
|
|
MIGRATION_DIRECTORY=migrations/postgres
|
|
|
|
|
|
|
|
# The URL of your database (or its path for SQlite databases)
|
|
|
|
DATABASE_URL=postgres://plume:plume@localhost/plume
|
|
|
|
|
|
|
|
# The domain of your instance
|
|
|
|
BASE_URL=plu.me
|
|
|
|
|
2021-01-25 01:41:40 +01:00
|
|
|
# Log level for each crate
|
2021-01-25 08:39:25 +01:00
|
|
|
RUST_LOG=warn,html5ever=warn,hyper=warn,tantivy=warn
|
2021-01-25 01:41:40 +01:00
|
|
|
|
2019-10-30 15:38:39 +01:00
|
|
|
# The secret key for private cookies and CSRF protection
|
|
|
|
# You can generate one with `openssl rand -base64 32`
|
|
|
|
ROCKET_SECRET_KEY=
|
|
|
|
|
|
|
|
# Port and address which Plume will use
|
|
|
|
ROCKET_PORT=7878
|
|
|
|
ROCKET_ADDRESS=127.0.0.1
|
|
|
|
|
|
|
|
## MAIL CONFIG ##
|
|
|
|
#MAIL_SERVER=smtp.plu.me
|
|
|
|
#MAIL_ADDRESS=no-reply@plu.me
|
|
|
|
#MAIL_USER=plume
|
|
|
|
#MAIL_PASSWORD=
|
|
|
|
#MAIL_HELO_NAME=no-reply@plu.me
|
|
|
|
|
|
|
|
## ADVANCED OPTIONS ##
|
|
|
|
#MEDIA_UPLOAD_DIRECTORY=static/media
|
|
|
|
#SEARCH_INDEX=search_index
|
|
|
|
|
|
|
|
# Sample logo configuration
|
|
|
|
#PLUME_LOGO=icons/trwnh/paragraphs/plumeParagraphs.svg
|
|
|
|
#PLUME_LOGO_FAVICON=icons/trwnh/paragraphs/plumeParagraphs32.png
|
|
|
|
#PLUME_LOGO_48=icons/trwnh/paragraphs/plumeParagraphs48.png
|
|
|
|
#PLUME_LOGO_72=icons/trwnh/paragraphs/plumeParagraphs72.png
|
|
|
|
#PLUME_LOGO_96=icons/trwnh/paragraphs/plumeParagraphs96.png
|
|
|
|
#PLUME_LOGO_144=icons/trwnh/paragraphs/plumeParagraphs144.png
|
|
|
|
#PLUME_LOGO_160=icons/trwnh/paragraphs/plumeParagraphs160.png
|
|
|
|
#PLUME_LOGO_192=icons/trwnh/paragraphs/plumeParagraphs192.png
|
|
|
|
#PLUME_LOGO_256=icons/trwnh/paragraphs/plumeParagraphs256.png
|
|
|
|
#PLUME_LOGO_512=icons/trwnh/paragraphs/plumeParagraphs512.png
|
2020-10-04 12:18:22 +02:00
|
|
|
|
|
|
|
## LDAP CONFIG ##
|
|
|
|
# the object that will be bound is "${USER_NAME_ATTR}=${username},${BASE_DN}"
|
|
|
|
#LDAP_ADDR=ldap://127.0.0.1:1389
|
|
|
|
#LDAP_BASE_DN="ou=users,dc=your-org,dc=eu"
|
|
|
|
#LDAP_USER_NAME_ATTR=cn
|
|
|
|
#LDAP_USER_MAIL_ATTR=mail
|
|
|
|
#LDAP_TLS=false
|
|
|
|
|