summaryrefslogtreecommitdiff
path: root/docs/narr/MyProject/production.ini
diff options
context:
space:
mode:
Diffstat (limited to 'docs/narr/MyProject/production.ini')
-rw-r--r--docs/narr/MyProject/production.ini53
1 files changed, 0 insertions, 53 deletions
diff --git a/docs/narr/MyProject/production.ini b/docs/narr/MyProject/production.ini
deleted file mode 100644
index c48ca6d9b..000000000
--- a/docs/narr/MyProject/production.ini
+++ /dev/null
@@ -1,53 +0,0 @@
-###
-# app configuration
-# http://docs.pylonsproject.org/projects/pyramid/en/1.7-branch/narr/environment.html
-###
-
-[app:main]
-use = egg:MyProject
-
-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/1.7-branch/narr/logging.html
-###
-
-[loggers]
-keys = root, myproject
-
-[handlers]
-keys = console
-
-[formatters]
-keys = generic
-
-[logger_root]
-level = WARN
-handlers = console
-
-[logger_myproject]
-level = WARN
-handlers =
-qualname = myproject
-
-[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