diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/taginthemiddle.ini	Tue May 04 08:37:15 2010 -0700
@@ -0,0 +1,22 @@
+#!/usr/bin/env paster
+
+[DEFAULT]
+debug = true
+email_to = jhammel@mozilla.com
+smtp_server = localhost
+error_email_from = paste@localhost
+
+[server:main]
+use = egg:Paste#http
+host = 0.0.0.0
+port = 9119
+
+[composite:main]
+use = egg:Paste#urlmap
+/ = TagInTheMiddle
+
+set debug = false
+
+[app:TagInTheMiddle]
+paste.app_factory = taginthemiddle.factory:factory
+TagInTheMiddle.name = world
\ No newline at end of file