This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
mandaye-cam/local_config.py

31 lines
803 B
Python

import os
import logging
_PROJECT_PATH = os.path.join(os.path.dirname(__file__), '..')
db_url = 'sqlite:///' + os.path.join(_PROJECT_PATH, 'data/test.db')
debug = False
log_file = os.path.join('/var/log/mandaye-cam/mandaye.log')
log_level = logging.INFO
# Encrypt service provider passwords with a secret
# You should install pycypto to use this feature
encrypt_sp_password = True
# Must be a 16, 24, or 32 bytes long
encrypt_secret = 'CHANGE_ME'
static_root = os.path.join(_PROJECT_PATH, 'cam/static')
hosts = {
'archimed.montpellier.entrouvert.org': [
{'path': r'/',
'target': 'http://ermes2.montpellier-agglo.com',
'mapping': 'cam.configs.archimed_saml.archimed_mapping'
},
{ 'path': r'/static',
'static': static_root
}
],
}