Mercurial > hg > toolbox
comparison relocator.ini @ 0:b0942f44413f
import from git://github.com/mozilla/toolbox.git
| author | Jeff Hammel <k0scist@gmail.com> |
|---|---|
| date | Sun, 11 May 2014 09:15:35 -0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:b0942f44413f |
|---|---|
| 1 #!/usr/bin/env paster | |
| 2 | |
| 3 # sample config file for toolbox mounted at /toolbox | |
| 4 | |
| 5 [DEFAULT] | |
| 6 debug = true | |
| 7 email_to = jhammel@mozilla.com | |
| 8 smtp_server = localhost | |
| 9 error_email_from = paste@localhost | |
| 10 | |
| 11 [exe] | |
| 12 command = serve | |
| 13 | |
| 14 [server:main] | |
| 15 use = egg:Paste#http | |
| 16 host = 0.0.0.0 | |
| 17 port = 8080 | |
| 18 | |
| 19 [composite:main] | |
| 20 use = egg:Paste#urlmap | |
| 21 / = toolbox | |
| 22 | |
| 23 set debug = false | |
| 24 | |
| 25 [app:toolbox] | |
| 26 paste.app_factory = toolbox.factory:relocator_factory | |
| 27 toolbox.about = %(here)s/ABOUT.txt | |
| 28 toolbox.directory = %(here)s/sample | |
| 29 toolbox.fields = usage, author, type, language | |
| 30 toolbox.model_type = toolbox.model:FileCache | |
| 31 toolbox.reload = false | |
| 32 baseurl = http://127.0.0.1/toolbox |
