Show More
@@ -0,0 +1,111 b'' | |||
|
1 | ################################################################################ | |
|
2 | # RhodeCode VCSServer with HTTP Backend - configuration # | |
|
3 | # # | |
|
4 | ################################################################################ | |
|
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 | ||
|
23 | [server:main] | |
|
24 | ## COMMON ## | |
|
25 | host = 127.0.0.1 | |
|
26 | port = 9900 | |
|
27 | ||
|
28 | ||
|
29 | ########################## | |
|
30 | ## GUNICORN WSGI SERVER ## | |
|
31 | ########################## | |
|
32 | ## run with gunicorn --log-config <inifile.ini> --paste <inifile.ini> | |
|
33 | use = egg:gunicorn#main | |
|
34 | ## Sets the number of process workers. You must set `instance_id = *` | |
|
35 | ## when this option is set to more than one worker, recommended | |
|
36 | ## value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers | |
|
37 | ## The `instance_id = *` must be set in the [app:main] section below | |
|
38 | workers = 2 | |
|
39 | ## process name | |
|
40 | proc_name = rhodecode_vcsserver | |
|
41 | ## type of worker class, one of sync, gevent | |
|
42 | ## recommended for bigger setup is using of of other than sync one | |
|
43 | worker_class = sync | |
|
44 | ## The maximum number of simultaneous clients. Valid only for Gevent | |
|
45 | #worker_connections = 10 | |
|
46 | ## max number of requests that worker will handle before being gracefully | |
|
47 | ## restarted, could prevent memory leaks | |
|
48 | max_requests = 1000 | |
|
49 | max_requests_jitter = 30 | |
|
50 | ## amount of time a worker can spend with handling a request before it | |
|
51 | ## gets killed and restarted. Set to 6hrs | |
|
52 | timeout = 21600 | |
|
53 | ||
|
54 | ||
|
55 | ||
|
56 | ||
|
57 | ################################ | |
|
58 | ### LOGGING CONFIGURATION #### | |
|
59 | ################################ | |
|
60 | [loggers] | |
|
61 | keys = root, vcsserver, pyro4, beaker | |
|
62 | ||
|
63 | [handlers] | |
|
64 | keys = console | |
|
65 | ||
|
66 | [formatters] | |
|
67 | keys = generic | |
|
68 | ||
|
69 | ############# | |
|
70 | ## LOGGERS ## | |
|
71 | ############# | |
|
72 | [logger_root] | |
|
73 | level = NOTSET | |
|
74 | handlers = console | |
|
75 | ||
|
76 | [logger_vcsserver] | |
|
77 | level = DEBUG | |
|
78 | handlers = | |
|
79 | qualname = vcsserver | |
|
80 | propagate = 1 | |
|
81 | ||
|
82 | [logger_beaker] | |
|
83 | level = DEBUG | |
|
84 | handlers = | |
|
85 | qualname = beaker | |
|
86 | propagate = 1 | |
|
87 | ||
|
88 | [logger_pyro4] | |
|
89 | level = DEBUG | |
|
90 | handlers = | |
|
91 | qualname = Pyro4 | |
|
92 | propagate = 1 | |
|
93 | ||
|
94 | ||
|
95 | ############## | |
|
96 | ## HANDLERS ## | |
|
97 | ############## | |
|
98 | ||
|
99 | [handler_console] | |
|
100 | class = StreamHandler | |
|
101 | args = (sys.stderr,) | |
|
102 | level = DEBUG | |
|
103 | formatter = generic | |
|
104 | ||
|
105 | ################ | |
|
106 | ## FORMATTERS ## | |
|
107 | ################ | |
|
108 | ||
|
109 | [formatter_generic] | |
|
110 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s | |
|
111 | datefmt = %Y-%m-%d %H:%M:%S No newline at end of file |
@@ -1,82 +1,85 b'' | |||
|
1 | 1 | ################################################################################ |
|
2 |
# RhodeCode VCSServer - configuration |
|
|
2 | # RhodeCode VCSServer with HTTP Backend - configuration # | |
|
3 | 3 | # # |
|
4 | 4 | ################################################################################ |
|
5 | 5 | |
|
6 | 6 | [app:main] |
|
7 | 7 | use = egg:rhodecode-vcsserver |
|
8 | 8 | |
|
9 | 9 | pyramid.default_locale_name = en |
|
10 | 10 | pyramid.includes = |
|
11 | 11 | |
|
12 | # default locale used by VCS systems | |
|
12 | 13 | locale = en_US.UTF-8 |
|
13 | 14 | |
|
14 | 15 | # cache regions, please don't change |
|
15 | 16 | beaker.cache.regions = repo_object |
|
16 | 17 | beaker.cache.repo_object.type = memorylru |
|
17 | 18 | beaker.cache.repo_object.max_items = 100 |
|
18 | 19 | # cache auto-expires after N seconds |
|
19 | 20 | beaker.cache.repo_object.expire = 300 |
|
20 | 21 | beaker.cache.repo_object.enabled = true |
|
21 | 22 | |
|
22 | 23 | [server:main] |
|
23 | use = egg:waitress#main | |
|
24 | ## COMMON ## | |
|
24 | 25 | host = 0.0.0.0 |
|
25 | port = %(http_port)s | |
|
26 | port = 9900 | |
|
27 | ||
|
28 | use = egg:waitress#main | |
|
26 | 29 | |
|
27 | 30 | |
|
28 | 31 | ################################ |
|
29 | 32 | ### LOGGING CONFIGURATION #### |
|
30 | 33 | ################################ |
|
31 | 34 | [loggers] |
|
32 | 35 | keys = root, vcsserver, pyro4, beaker |
|
33 | 36 | |
|
34 | 37 | [handlers] |
|
35 | 38 | keys = console |
|
36 | 39 | |
|
37 | 40 | [formatters] |
|
38 | 41 | keys = generic |
|
39 | 42 | |
|
40 | 43 | ############# |
|
41 | 44 | ## LOGGERS ## |
|
42 | 45 | ############# |
|
43 | 46 | [logger_root] |
|
44 | 47 | level = NOTSET |
|
45 | 48 | handlers = console |
|
46 | 49 | |
|
47 | 50 | [logger_vcsserver] |
|
48 | 51 | level = DEBUG |
|
49 | 52 | handlers = |
|
50 | 53 | qualname = vcsserver |
|
51 | 54 | propagate = 1 |
|
52 | 55 | |
|
53 | 56 | [logger_beaker] |
|
54 | 57 | level = DEBUG |
|
55 | 58 | handlers = |
|
56 | 59 | qualname = beaker |
|
57 | 60 | propagate = 1 |
|
58 | 61 | |
|
59 | 62 | [logger_pyro4] |
|
60 | 63 | level = DEBUG |
|
61 | 64 | handlers = |
|
62 | 65 | qualname = Pyro4 |
|
63 | 66 | propagate = 1 |
|
64 | 67 | |
|
65 | 68 | |
|
66 | 69 | ############## |
|
67 | 70 | ## HANDLERS ## |
|
68 | 71 | ############## |
|
69 | 72 | |
|
70 | 73 | [handler_console] |
|
71 | 74 | class = StreamHandler |
|
72 | 75 | args = (sys.stderr,) |
|
73 | 76 | level = DEBUG |
|
74 | 77 | formatter = generic |
|
75 | 78 | |
|
76 | 79 | ################ |
|
77 | 80 | ## FORMATTERS ## |
|
78 | 81 | ################ |
|
79 | 82 | |
|
80 | 83 | [formatter_generic] |
|
81 | 84 | format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s |
|
82 | 85 | datefmt = %Y-%m-%d %H:%M:%S |
|
1 | NO CONTENT: file renamed from configs/development.ini to configs/development_pyro4.ini |
|
1 | NO CONTENT: file renamed from configs/production.ini to configs/production_pyro4.ini |
General Comments 0
You need to be logged in to leave comments.
Login now