cherrypy.conf 748 B

1234567891011121314151617181920212223
  1. # This program is free software; you can redistribute it and/or modify
  2. # it under the terms of the GNU General Public License as published by
  3. # the Free Software Foundation; version 2 of the License.
  4. #
  5. # This program is distributed in the hope that it will be useful,
  6. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  7. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  8. # GNU General Public License for more details.
  9. #
  10. # Author: Emanuel Fonseca
  11. # Email: emdfonseca<at>gmail<dot>com
  12. # Date: 25 August 2008
  13. [global]
  14. server.socket_port = 8000
  15. server.thread_pool = 10
  16. tools.sessions.on = True
  17. tools.staticdir.root = "/home/edfonseca/Projects/pyofc2"
  18. [/static]
  19. tools.staticdir.on = True
  20. tools.staticdir.dir = "static"