lenticular_cloud2/lenticular_cloud/config_development.toml

55 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2020-05-09 18:00:07 +00:00
SECRET_KEY = 'secret_key'
2020-05-09 19:07:46 +00:00
SESSION_COOKIE_NAME='lc_session'
2020-05-09 18:00:07 +00:00
SUBJECT_ID_HASH_SALT = 'salt'
PREFERRED_URL_SCHEME = 'https'
2022-02-06 22:57:01 +00:00
DATA_FOLDER = "../data"
2020-05-09 18:57:16 +00:00
2022-04-08 19:29:23 +00:00
SCRIPT_LOCATION="lenticular_cloud:migrations"
2023-10-09 19:58:44 +00:00
SQLALCHEMY_DATABASE_URI = 'sqlite:///../data/db.sqlite'
SQLALCHEMY_TRACK_MODIFICATIONS = false
2020-05-09 18:00:07 +00:00
2023-10-09 19:58:44 +00:00
PKI_PATH = "../data/pki"
2020-05-09 19:07:46 +00:00
DOMAIN = 'example.com'
2023-12-17 13:47:38 +00:00
PUBLIC_URL = 'http://localhost:5000'
#SERVER_NAME = f'account.{ DOMAIN }:9090'
2020-05-09 18:00:07 +00:00
2020-05-21 11:20:27 +00:00
HYDRA_REQUEST_TIMEOUT_SECONDS = 3
2023-12-17 13:47:38 +00:00
HYDRA_ADMIN_URL = 'http://127.0.0.1:8081'
2020-06-21 09:42:23 +00:00
HYDRA_ADMIN_USER = 'lenticluar_cloud'
HYDRA_ADMIN_PASSWORD = 'notSecure'
2023-12-17 13:47:38 +00:00
HYDRA_PUBLIC_URL = 'http://127.0.0.1:8082'
2020-05-21 11:20:27 +00:00
SUBJECT_PREFIX = 'something random'
OAUTH_ID = 'identiy_provider'
2023-12-23 01:41:26 +00:00
OAUTH_SECRET = 'thisIsNotSecure'
2020-05-21 11:20:27 +00:00
2023-12-24 10:09:41 +00:00
ADMINS = [
'tuxcoder'
]
2020-05-21 11:20:27 +00:00
2023-10-09 19:58:44 +00:00
[LENTICULAR_CLOUD_SERVICES.jabber]
app_token = true
# client_cert= true
2023-12-25 23:24:28 +00:00
icon = "https://seafile.milliways.info/media/favicons/favicon.png"
href = "https://seafile.milliways.info"
2023-10-09 19:58:44 +00:00
[LENTICULAR_CLOUD_SERVICES.mail-cardav]
app_token = true
2020-05-09 18:00:07 +00:00
2023-10-09 19:58:44 +00:00
# LENTICULAR_CLOUD_SERVICES = {
# 'jabber': {
# 'client_cert': True,
# 'pki_config':{
# 'email': '{username}@jabber.{domain}'
# },
# 'app_token': True
# },
# 'mail-cardav': {
# 'client_cert': False,
# 'app_token': True
# }
# }