settings.yaml
1.39 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
## Set to false in production
DEBUG: true
TEMPLATE_DEBUG: true
## System admins
ADMINS: &admin
-
- John Foo
- john@example.com
-
- Mary Bar
- mary@example.com
MANAGERS: *admin
COLAB_FROM_ADDRESS: '"Colab" <noreply@example.com>'
SERVER_EMAIL: '"Colab" <noreply@example.com>'
EMAIL_HOST: localhost
EMAIL_PORT: 25
EMAIL_SUBJECT_PREFIX: '[colab]'
SECRET_KEY: 'hu8-)szdcjjsz%f02gt$5djbluxc$v0a%01l)di6oi)np7%8lu'
# Must use it without trailing slash
SITE_URL: 'http://localhost:8000'
BROWSERID_AUDIENCES:
- http://localhost:8000
# - http://example.com
# - https://example.org
# - http://example.net
ALLOWED_HOSTS:
- localhost
# - example.com
# - example.org
# - example.net
### Uncomment to enable Broswer ID protocol for authentication
# BROWSERID_ENABLED: True
### Uncomment to enable Converse.js
# CONVERSEJS_ENABLED: True
### Uncomment to enable auto-registration
# CONVERSEJS_AUTO_REGISTER: 'xmpp.example.com'
## Database settings
DATABASES:
default:
ENGINE: django.db.backends.postgresql_psycopg2
HOST: localhost
NAME: colab
USER: colab
PASSWORD: colab
## Disable indexing
ROBOTS_NOINDEX: false
### Log errors to Sentry instance
# RAVEN_DSN: 'http://public:secret@example.com/1'
### Colab proxied apps
PROXIED_APPS:
gitlab:
upstream: 'http://localhost:8090/gitlab/'
private_token: ''
# trac:
# upstream: 'http://localhost:5000/trac/'