Browse Source

updated production.ini

php2python
Holger Frey 7 years ago
parent
commit
71c1b5fd76
  1. 20
      production.ini

20
production.ini

@ -11,9 +11,29 @@ pyramid.debug_authorization = false
pyramid.debug_notfound = false pyramid.debug_notfound = false
pyramid.debug_routematch = false pyramid.debug_routematch = false
pyramid.default_locale_name = en pyramid.default_locale_name = en
pyramid.includes =
pyramid_mailer
sqlalchemy.url = sqlite:///%(here)s/ordr2.sqlite sqlalchemy.url = sqlite:///%(here)s/ordr2.sqlite
# email delivery
mail.host = localhost
mail.port = 2525
mail.default_sender = ordr@example.com
# custom settings
auth.secret = 'Change Me 1'
session.secret = 'Change Me 2'
session.auto_csrf = true
static_views.cache_max_age = 0
# custom jinja filters and tests
jinja2.filters =
are_extras_active = ordr2.templates.tests:are_extras_active
### ###
# wsgi server configuration # wsgi server configuration
### ###