Mercurial > hg > TagInTheMiddle
comparison taginthemiddle.ini @ 0:1c5cbbde4299
initial commit of middleware tagging; doesnt yet work
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Tue, 04 May 2010 08:37:15 -0700 |
| parents | |
| children | 61dd789330f7 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:1c5cbbde4299 |
|---|---|
| 1 #!/usr/bin/env paster | |
| 2 | |
| 3 [DEFAULT] | |
| 4 debug = true | |
| 5 email_to = jhammel@mozilla.com | |
| 6 smtp_server = localhost | |
| 7 error_email_from = paste@localhost | |
| 8 | |
| 9 [server:main] | |
| 10 use = egg:Paste#http | |
| 11 host = 0.0.0.0 | |
| 12 port = 9119 | |
| 13 | |
| 14 [composite:main] | |
| 15 use = egg:Paste#urlmap | |
| 16 / = TagInTheMiddle | |
| 17 | |
| 18 set debug = false | |
| 19 | |
| 20 [app:TagInTheMiddle] | |
| 21 paste.app_factory = taginthemiddle.factory:factory | |
| 22 TagInTheMiddle.name = world |
