You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.0 KiB
60 lines
1.0 KiB
### |
|
# app configuration |
|
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html |
|
### |
|
|
|
[app:main] |
|
use = egg:cookie |
|
|
|
pyramid.reload_templates = false |
|
pyramid.debug_authorization = false |
|
pyramid.debug_notfound = false |
|
pyramid.debug_routematch = false |
|
pyramid.default_locale_name = en |
|
|
|
zodbconn.uri = file://%(here)s/Data.fs?connection_cache_size=20000 |
|
|
|
retry.attempts = 3 |
|
|
|
[pshell] |
|
setup = cookie.pshell.setup |
|
|
|
### |
|
# wsgi server configuration |
|
### |
|
|
|
[server:main] |
|
use = egg:waitress#main |
|
listen = *:6543 |
|
|
|
### |
|
# logging configuration |
|
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html |
|
### |
|
|
|
[loggers] |
|
keys = root, cookie |
|
|
|
[handlers] |
|
keys = console |
|
|
|
[formatters] |
|
keys = generic |
|
|
|
[logger_root] |
|
level = WARN |
|
handlers = console |
|
|
|
[logger_cookie] |
|
level = WARN |
|
handlers = |
|
qualname = cookie |
|
|
|
[handler_console] |
|
class = StreamHandler |
|
args = (sys.stderr,) |
|
level = NOTSET |
|
formatter = generic |
|
|
|
[formatter_generic] |
|
format = %(asctime)s %(levelname)-5.5s [%(name)s:%(lineno)s][%(threadName)s] %(message)s
|
|
|