Show More
@@ -3,22 +3,6 b'' | |||||
3 | # # |
|
3 | # # | |
4 | ################################################################################ |
|
4 | ################################################################################ | |
5 |
|
5 | |||
6 | [app:main] |
|
|||
7 | use = egg:rhodecode-vcsserver |
|
|||
8 |
|
||||
9 | pyramid.default_locale_name = en |
|
|||
10 | pyramid.includes = |
|
|||
11 |
|
||||
12 | # default locale used by VCS systems |
|
|||
13 | locale = en_US.UTF-8 |
|
|||
14 |
|
||||
15 | # cache regions, please don't change |
|
|||
16 | beaker.cache.regions = repo_object |
|
|||
17 | beaker.cache.repo_object.type = memorylru |
|
|||
18 | beaker.cache.repo_object.max_items = 100 |
|
|||
19 | # cache auto-expires after N seconds |
|
|||
20 | beaker.cache.repo_object.expire = 300 |
|
|||
21 | beaker.cache.repo_object.enabled = true |
|
|||
22 |
|
6 | |||
23 | [server:main] |
|
7 | [server:main] | |
24 | ## COMMON ## |
|
8 | ## COMMON ## | |
@@ -29,7 +13,7 b' port = 9900' | |||||
29 | ########################## |
|
13 | ########################## | |
30 | ## GUNICORN WSGI SERVER ## |
|
14 | ## GUNICORN WSGI SERVER ## | |
31 | ########################## |
|
15 | ########################## | |
32 |
## run with gunicorn --log-config |
|
16 | ## run with gunicorn --log-config vcsserver.ini --paste vcsserver.ini | |
33 | use = egg:gunicorn#main |
|
17 | use = egg:gunicorn#main | |
34 | ## Sets the number of process workers. You must set `instance_id = *` |
|
18 | ## Sets the number of process workers. You must set `instance_id = *` | |
35 | ## when this option is set to more than one worker, recommended |
|
19 | ## when this option is set to more than one worker, recommended | |
@@ -52,6 +36,22 b' max_requests_jitter = 30' | |||||
52 | timeout = 21600 |
|
36 | timeout = 21600 | |
53 |
|
37 | |||
54 |
|
38 | |||
|
39 | [app:main] | |||
|
40 | use = egg:rhodecode-vcsserver | |||
|
41 | ||||
|
42 | pyramid.default_locale_name = en | |||
|
43 | pyramid.includes = | |||
|
44 | ||||
|
45 | ## default locale used by VCS systems | |||
|
46 | locale = en_US.UTF-8 | |||
|
47 | ||||
|
48 | # cache regions, please don't change | |||
|
49 | beaker.cache.regions = repo_object | |||
|
50 | beaker.cache.repo_object.type = memorylru | |||
|
51 | beaker.cache.repo_object.max_items = 100 | |||
|
52 | # cache auto-expires after N seconds | |||
|
53 | beaker.cache.repo_object.expire = 300 | |||
|
54 | beaker.cache.repo_object.enabled = true | |||
55 |
|
55 | |||
56 |
|
56 | |||
57 | ################################ |
|
57 | ################################ |
General Comments 0
You need to be logged in to leave comments.
Login now