paste.ini 835 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [DEFAULT]
  2. debug = true
  3. [composite:main]
  4. use = egg:Paste#urlmap
  5. / = pelican_output
  6. # / = ventriloquist
  7. # /blog/ = pyblosxom
  8. /etc/images/ = static_images_serve
  9. /etc/css/ = static_css_serve
  10. /etc/js/ = static_js_serve
  11. [app:pelican_output]
  12. use = egg:Paste#static
  13. document_root = %(here)s/output/
  14. [app:ventriloquist]
  15. use = egg:ventriloquist#ventriloquist_app
  16. document_root = %(here)s/templates/
  17. [app:static_images_serve]
  18. use = egg:Paste#static
  19. document_root = %(here)s/static/images/
  20. [app:static_css_serve]
  21. use = egg:Paste#static
  22. document_root = %(here)s/static/css/
  23. [app:static_js_serve]
  24. use = egg:Paste#static
  25. document_root = %(here)s/static/js/
  26. # [app:pyblosxom]
  27. # paste.app_factory = Pyblosxom.pyblosxom:pyblosxom_app_factory
  28. # configpydir = %(here)s/dustyblosxom/
  29. [server:main]
  30. use = egg:Paste#http
  31. host = 127.0.0.1
  32. port = 6543