-
Notifications
You must be signed in to change notification settings - Fork 26
/
indico.conf
32 lines (24 loc) · 949 Bytes
/
indico.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Database
import os
SQLALCHEMY_DATABASE_URI = f'postgresql://{os.environ["PGUSER"]}:{os.environ["PGPASSWORD"]}@{os.environ["PGHOST"]}:5432/{os.environ["PGDATABASE"]}'
del os
# Change this to something long and random
SECRET_KEY = ''
BASE_URL = 'http://localhost:8080'
USE_PROXY = True
DEFAULT_TIMEZONE = 'Europe/Zurich'
DEFAULT_LOCALE = 'en_GB'
REDIS_CACHE_URL = 'redis://indico-redis:6379/0'
CELERY_BROKER = 'redis://indico-redis:6379/1'
# Change these emails to something sensible
NO_REPLY_EMAIL = '[email protected]'
SUPPORT_EMAIL = '[email protected]'
ENABLE_ROOMBOOKING = True
LOG_DIR = '/opt/indico/log'
TEMP_DIR = '/opt/indico/tmp'
CACHE_DIR = '/opt/indico/cache'
CUSTOMIZATION_DIR = '/opt/indico/custom'
STORAGE_BACKENDS = {'default': 'fs:/opt/indico/archive'}
ATTACHMENT_STORAGE = 'default'
# Specify the plugins you need here
PLUGINS = {'previewer_code', 'vc_zoom', 'payment_manual'}