Mercurial > hg > redirectall
annotate redirectall.ini @ 1:3117c5556eca default tip
update redirectall
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 08 May 2011 19:14:21 -0700 |
parents | 9e2187433034 |
children |
rev | line source |
---|---|
0 | 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 = 8080 | |
13 | |
14 [composite:main] | |
15 use = egg:Paste#urlmap | |
16 / = redirectall | |
17 | |
18 set debug = false | |
19 | |
20 [app:redirectall] | |
21 paste.app_factory = redirectall.factory:factory | |
1 | 22 redirectall.base_url = http://brasstacks.mozilla.com/toolbox |