forked from dmwm/deployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocal.ini
44 lines (33 loc) · 1.33 KB
/
local.ini
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
; CouchDB Configuration Settings
; Custom settings should be made in this file. They will override settings
; in default.ini, but unlike changes made to default.ini, this file won't be
; overwritten on server upgrade.
[couchdb]
;max_document_size = 4294967296 ; bytes
database_dir = deploy_project_root/couchdb/database
view_index_dir = deploy_project_root/couchdb/database
uri_file = deploy_project_root/couchdb/logs/couch.uri
os_process_timeout = 1000000
[httpd]
port = 5984
bind_address = 0.0.0.0
[log]
level = info
file = deploy_project_root/couchdb/logs/couch.log
[couch_httpd_auth]
;secret = replace this with a real secret
[update_notification]
;unique notifier name=/full/path/to/exe -with "cmd line arg"
; To create an admin account uncomment the '[admins]' section below and add a
; line in the format 'username = password'. When you next start CouchDB, it
; will change the password to a hash (so that your passwords don't linger
; around in plain-text files). You can add more admin accounts with more
; 'username = password' lines. Don't forget to restart CouchDB after
; changing this.
[admins]
;admin = mysecretpassword
[ssl]
;cert_file = deploy_project_root/couchdb/certs/cert.pem
;key_file = deploy_project_root/couchdb/certs/key.pem
; cacert only needed if using a proxy
;cacert_file = deploy_project_root/couchdb/certs/cert.pem