Files
html_cleanup/production.ini
2023-12-02 15:11:49 +01:00

58 lines
1.0 KiB
INI

###
# app configuration
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
###
[app:main]
use = egg:html_cleanup
pyramid.reload_templates = false
pyramid.debug_authorization = false
pyramid.debug_notfound = false
pyramid.debug_routematch = false
pyramid.default_locale_name = en
# temp folder location
temp_folder = /pyramid/html_cleanup/html_cleanup/static/temp/
###
# wsgi server configuration
###
[server:main]
use = egg:waitress#main
listen = *:9480
url_scheme = https
###
# logging configuration
# https://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
###
[loggers]
keys = root, html_cleanup
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
[logger_html_cleanup]
level = WARN
handlers =
qualname = html_cleanup
[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