1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2025-07-06 01:13:53 +02:00
Files
ghostream/ghostream/default_settings.py
Alexandre Iooss 4b5c5d282e Fix hostname
2020-09-14 13:52:13 +02:00

13 lines
369 B
Python

import os
# Default configuration
# LDAP
LDAP_URI = os.environ.get('LDAP_URI') or "ldap://127.0.0.1:389"
LDAP_USER_DN = os.environ.get('LDAP_USER_DN') or "cn=users,dc=example,dc=com"
# Web page
SITE_NAME = os.environ.get('SITE_NAME') or "Ghostream"
SITE_HOSTNAME = os.environ.get('SITE_HOSTNAME') or "localhost"
FAVICON = os.environ.get('FAVICON') or "/favicon.ico"