summaryrefslogtreecommitdiff
path: root/docs/quick_tour/package/production.ini
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-25 02:17:19 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-25 02:17:19 -0800
commit54d9ddcd335d45662ca2ec2839574085318e8704 (patch)
treec037abd5eb3d2f4c849b975c641e8575c01bd650 /docs/quick_tour/package/production.ini
parent2cd1eab15a3777cbc81c2d365f21a98c29c9ed86 (diff)
downloadpyramid-54d9ddcd335d45662ca2ec2839574085318e8704.tar.gz
pyramid-54d9ddcd335d45662ca2ec2839574085318e8704.tar.bz2
pyramid-54d9ddcd335d45662ca2ec2839574085318e8704.zip
quick_tour - Configuration with ``.ini`` files section cookiecutter updates
- src files - update numbered list for new listen configuration for waitress - fix reference to app, not server - reorder numbered list to align with configuration order
Diffstat (limited to 'docs/quick_tour/package/production.ini')
-rw-r--r--docs/quick_tour/package/production.ini53
1 files changed, 53 insertions, 0 deletions
diff --git a/docs/quick_tour/package/production.ini b/docs/quick_tour/package/production.ini
new file mode 100644
index 000000000..9c12bc4ec
--- /dev/null
+++ b/docs/quick_tour/package/production.ini
@@ -0,0 +1,53 @@
+###
+# app configuration
+# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
+###
+
+[app:main]
+use = egg:hello_world
+
+pyramid.reload_templates = false
+pyramid.debug_authorization = false
+pyramid.debug_notfound = false
+pyramid.debug_routematch = false
+pyramid.default_locale_name = en
+
+###
+# wsgi server configuration
+###
+
+[server:main]
+use = egg:waitress#main
+listen = *:6543
+
+###
+# logging configuration
+# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
+###
+
+[loggers]
+keys = root, hello_world
+
+[handlers]
+keys = console
+
+[formatters]
+keys = generic
+
+[logger_root]
+level = WARN
+handlers = console
+
+[logger_hello_world]
+level = WARN
+handlers =
+qualname = hello_world
+
+[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