Mercurial > mozilla > hg > talosnames
comparison paste.ini @ 66:0f5c22c07146
add interface for paste since wsgiref falls over in production
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 20 Aug 2012 09:49:18 -0700 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
65:22c35af93ef8 | 66:0f5c22c07146 |
---|---|
1 #!/usr/bin/env paster | |
2 | |
3 [DEFAULT] | |
4 debug = true | |
5 email_to = jhammel@mozmilla.com | |
6 smtp_server = localhost | |
7 error_email_from = talosnames@localhost | |
8 | |
9 [server:main] | |
10 use = egg:Paste#http | |
11 host = 0.0.0.0 | |
12 port = 8080 | |
13 | |
14 [composite:main] | |
15 use = egg:Paste#urlmap | |
16 / = talosnames | |
17 | |
18 set debug = false | |
19 | |
20 [app:talosnames] | |
21 paste.app_factory = talosnames.web:paste_factory |