-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathexample.ini
62 lines (48 loc) · 1.03 KB
/
example.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
#
# example configuration with most options so docker container
# can run right out of the box
#
[server:main]
use = egg:Paste#http
host = 0.0.0.0
port = 9000
[app:main]
use = egg:SyncStorage
[loggers]
keys = root, gunicorn
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_gunicorn]
level = WARN
handlers = console
qualname = gunicorn
[handler_console]
class = StreamHandler
args = (sys.stdout,)
formatter = generic
[formatter_generic]
#class = mozsvc.util.JsonLogFormatter
[storage]
backend = syncstorage.storage.sql.SQLStorage
sqluri = sqlite:///:memory:
#sqluri = pymysql://user:[email protected]/weave0
standard_collections = true
quota_size = 5242880
pool_size = 100
pool_recycle = 3600
reset_on_return = true
create_tables = true
batch_max_count = 4000
force_consistent_sort_order = true
# memcache caching
#cache_servers = 127.0.0.1:11311
#cache_key_prefix = sync-storage
#cached_collections = meta clients
#cache_only_collections = tabs
[hawkauth]
secret = "secret value"