blob: dc95150f15d91afeb61e5a608a43cd73706b9190 (
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
|
[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]
; 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
|