diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-10-19 20:29:15 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-10-19 20:29:15 +0200 |
commit | 5c31fbf0b12632b32912fa92be3d53b6e3902b91 (patch) | |
tree | 86c29d1e0e0d7677fc22cf85c3d23f41c79ec295 /app/config/configuration/plume | |
parent | 3ef7b6775b6e390406b216f9b4a65e655780083e (diff) | |
download | infrastructure-5c31fbf0b12632b32912fa92be3d53b6e3902b91.tar.gz infrastructure-5c31fbf0b12632b32912fa92be3d53b6e3902b91.zip |
Add plume config template
Diffstat (limited to 'app/config/configuration/plume')
-rw-r--r-- | app/config/configuration/plume/app.env | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app/config/configuration/plume/app.env b/app/config/configuration/plume/app.env new file mode 100644 index 0000000..78eccfe --- /dev/null +++ b/app/config/configuration/plume/app.env @@ -0,0 +1,30 @@ +BASE_URL=plume.deuxfleurs.fr +# generate one with openssl rand -base64 32 +ROCKET_SECRET_KEY={{ key "secrets/plume/secret_key" | trimSpace }} + +# Mail settings +#MAIL_SERVER=smtp.example.org +#MAIL_USER=example +#MAIL_PASSWORD=123456 +#MAIL_HELO_NAME=example.org + +# DATABASE SETUP +POSTGRES_PASSWORD={{ key "secrets/plume/pgsql_pw" | trimSpace }} +POSTGRES_USER=plume +POSTGRES_DB=plume +DATABASE_URL=postgres://plume:{{ key "secrets/plume/pgsql_pw" | trimSpace }}@psql-proxy.service.2.cluster.deuxfleurs.fr:5432/plume +MIGRATION_DIRECTORY=migrations/postgres + +USE_HTTPS=0 +ROCKET_ADDRESS=0.0.0.0 +ROCKET_PORT=7878 + +MEDIA_UPLOAD_DIRECTORY=/app/static/media +SEARCH_INDEX=/app/search_index + +LDAP_ADDR=ldap://bottin2.service.2.cluster.deuxfleurs.fr:389 +LDAP_BASE_DN=ou=users,dc=deuxfleurs,dc=fr +LDAP_USER_NAME_ATTR=cn +LDAP_USER_MAIL_ATTR=mail +LDAP_TLS=false + |