forked from ENCODE-DCC/encoded
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduction.ini
110 lines (89 loc) · 2.96 KB
/
production.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
###
# app configuration
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
###
[app:main]
use = egg:encoded
sqlalchemy.url = postgresql:///encoded
create_tables =
#sqlalchemy.url = sqlite://
collection_source = elasticsearch
elasticsearch.server = http://localhost:9200
ontology_path = %(here)s/ontology.json
# Only run ec2metadata on ec2 instances
# XXX really need to reorganise ini files for more reuse
hostname_command = command -v ec2metadata > /dev/null && ec2metadata --public-hostname || hostname
session.secret = %(here)s/session-secret.b64
multiauth.policies = session remoteuser accesskey
multiauth.groupfinder = encoded.authorization.groupfinder
multiauth.policy.session.use = encoded.authentication.NamespacedAuthenticationPolicy
multiauth.policy.session.base = pyramid.authentication.SessionAuthenticationPolicy
multiauth.policy.session.namespace = mailto
multiauth.policy.remoteuser.use = encoded.authentication.NamespacedAuthenticationPolicy
multiauth.policy.remoteuser.namespace = remoteuser
multiauth.policy.remoteuser.base = pyramid.authentication.RemoteUserAuthenticationPolicy
multiauth.policy.accesskey.use = encoded.authentication.NamespacedAuthenticationPolicy
multiauth.policy.accesskey.namespace = accesskey
multiauth.policy.accesskey.base = encoded.authentication.BasicAuthAuthenticationPolicy
multiauth.policy.accesskey.check = encoded.authentication.basic_auth_check
allow.view = Authenticated
allow.list = Authenticated
allow.traverse = Authenticated
allow.ALL_PERMISSIONS = group.admin
allow.edw_key_create = accesskey.edw
allow.edw_key_update = accesskey.edw
persona.audiences = http://*.encodedcc.org
persona.siteName = ENCODE DCC Submission
# Uncomment to load data at startup
#load_workbook = %(here)s/../documents-export.zip
load_docsdir =
%(here)s/../dccMetadataImport/data/documents
%(here)s/../dccMetadataImport/data/ENCODE3docs
## above path will change with incorporation of ENCODE3 docs!!!
pyramid.reload_templates = false
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
[composite:indexer]
use = egg:encoded#indexer
timeout = 60
###
# wsgi server configuration
###
[server:main]
use = egg:waitress#main
host = 0.0.0.0
port = 6543
# Change this to 1 thread when using sqlite.
threads = 8
###
# logging configuration
# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
###
[loggers]
keys = root, encoded, encoded_listener
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_encoded]
level = WARN
handlers = console
qualname = encoded
propagate = 0
[logger_encoded_listener]
level = DEBUG
handlers = console
qualname = encoded.commands.es_index_listener
propagate = 0
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s