8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-01 07:22:25 +00:00
re2o/re2o/settings_local.example.py

108 lines
2.5 KiB
Python
Raw Normal View History

2016-07-06 10:29:49 +00:00
SECRET_KEY = 'SUPER_SECRET'
DB_PASSWORD = 'SUPER_SECRET'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
2017-01-15 13:32:12 +00:00
ADMINS = [('Example', 'rezo-admin@example.org')]
SERVER_EMAIL = 'no-reply@example.org'
2016-12-12 15:59:33 +00:00
# Obligatoire, liste des host autorisés
ALLOWED_HOSTS = ['test.example.org']
2016-07-06 10:29:49 +00:00
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 're2o',
'USER': 're2o',
'PASSWORD': DB_PASSWORD,
'HOST': 'localhost',
2016-10-12 10:46:39 +00:00
},
'ldap': {
'ENGINE': 'ldapdb.backends.ldap',
'NAME': 'ldap://10.0.0.0/',
'USER': 'cn=admin,dc=ldap,dc=example,dc=org',
'PASSWORD': 'SUPER_SECRET',
}
2016-07-06 10:29:49 +00:00
}
2016-12-12 15:59:33 +00:00
# Security settings
SECURE_CONTENT_TYPE_NOSNIFF = True
SECURE_BROWSER_XSS_FILTER = True
SESSION_COOKIE_SECURE = True
CSRF_COOKIE_SECURE = True
CSRF_COOKIE_HTTPONLY = True
X_FRAME_OPTIONS = 'DENY'
SESSION_COOKIE_AGE = 60 * 60 * 3
2016-07-14 12:08:50 +00:00
# Association information
2016-07-20 10:18:37 +00:00
SITE_NAME = "Re2o.rez"
2016-12-12 15:59:33 +00:00
# Main extension used in asso
MAIN_EXTENSION = ".rez"
2016-07-14 12:08:50 +00:00
LOGO_PATH = "static_files/logo.png"
ASSO_NAME = "Asso reseau"
ASSO_ADDRESS_LINE1 = "2, rue Edouard Belin"
ASSO_ADDRESS_LINE2 = "57070 Metz"
ASSO_SIRET = ""
ASSO_EMAIL = "tresorier@ecole.fr"
ASSO_PHONE = "01 02 03 04 05"
2016-12-12 15:59:33 +00:00
ASSO_PSEUDO = "rezo"
2016-07-20 10:18:37 +00:00
services_urls = {
2016-11-17 03:55:34 +00:00
#Fill IT : ex : 'gitlab': {
# 'url': 'https://gitlab.rezometz.org',
# 'logo': 'gitlab.png',
# 'description': 'Gitlab is cool 8-)'},
2016-07-20 10:18:37 +00:00
}
# Number of hours a token remains valid after having been created. Numeric and string
# versions should have the same meaning.
REQ_EXPIRE_HRS = 48
REQ_EXPIRE_STR = '48 heures'
# Email `From` field
EMAIL_FROM = 'www-data@serveur.net'
2016-10-12 10:46:39 +00:00
2016-12-12 15:59:33 +00:00
EMAIL_HOST = 'smtp.example.org'
2016-10-12 10:46:39 +00:00
# Reglages pour la bdd ldap
LDAP = {
'base_user_dn' : 'cn=Utilisateurs,dc=ldap,dc=example,dc=org',
'base_userservice_dn' : 'ou=service-users,dc=ldap,dc=example,dc=org',
'base_usergroup_dn' : 'ou=posix,ou=groups,dc=ldap,dc=example,dc=org',
'user_gid' : 500,
}
UID_RANGES = {
'users' : [21001,30000],
'service-users' : [20000,21000],
}
# Chaque groupe a un gid assigné, voici la place libre pour assignation
GID_RANGES = {
'posix' : [501, 600],
}
2016-12-12 15:59:33 +00:00
# Affchage des résultats
SEARCH_RESULT = 15
# Max machines et max alias autorisés par personne
MAX_INTERFACES = 4
MAX_ALIAS = 4
2016-10-12 10:46:39 +00:00
2016-12-12 15:59:33 +00:00
# Liste des vlans id disponible sur un switch
VLAN_ID_LIST = [7,8,42,69]
# Décision radius à prendre
RADIUS_VLAN_DECISION = {
'VLAN_NOK' : 42,
'VLAN_OK' : 69,
}
OPTIONNAL_APPS = ()