aboutsummaryrefslogtreecommitdiffhomepage
path: root/config.ini
blob: aacbf531e9738aa76cdea569d29ea6a91d039f34 (plain)
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
[instance]
; hostname (required) and port (optional) should be the values seen from the
; outside world. this is important if you're using a reverse proxy
hostname = example.org
;port = 443

[database]
host = localhost
port = 5432
username = digitigrade
password = digitigrade
database = digitigrade

[queue]
; host (required) and port (optional, default = 11300)
; connection details for a beanstalkd job queue server
host = localhost
port = 11300
; tube name to send all jobs down (optional, default = 'digitigrade')
channel = digitigrade

[debug]
; minimum log level (optional, values = debug|info|warning|error, default = info)
log_level = info
; whether to send full tracebacks on internal server errors (optional,
; default = false)
send_tracebacks = false
; whether clients will use https to connect - again, important for reverse
; proxies that terminate tls (optional, default = true)
; this should always be true except for in testing
https = true