PageRenderTime 16ms CodeModel.GetById 11ms RepoModel.GetById 1ms app.codeStats 0ms

/community_wsgi.ini.sample

https://bitbucket.org/cistrome/cistrome-harvard/
Unknown | 81 lines | 60 code | 21 blank | 0 comment | 0 complexity | f50e50fb1a023a826cd428c1c549e4bc MD5 | raw file
  1. # ---- HTTP Server ----------------------------------------------------------
  2. [server:main]
  3. use = egg:Paste#http
  4. port = 9009
  5. host = 127.0.0.1
  6. use_threadpool = true
  7. threadpool_workers = 10
  8. # ---- Galaxy Webapps Community Interface -------------------------------------------------
  9. [app:main]
  10. # Specifies the factory for the universe WSGI application
  11. paste.app_factory = galaxy.webapps.community.buildapp:app_factory
  12. log_level = DEBUG
  13. # Database connection
  14. #database_file = database/community.sqlite
  15. # You may use a SQLAlchemy connection string to specify an external database instead
  16. #database_connection = postgres:///community_test?host=/var/run/postgresql
  17. # Where dataset files are saved
  18. file_path = database/community_files
  19. # Temporary storage for additional datasets, this should be shared through the cluster
  20. new_file_path = database/tmp
  21. # Where templates are stored
  22. template_path = lib/galaxy/webapps/community/templates
  23. # Session support (beaker)
  24. use_beaker_session = True
  25. session_type = memory
  26. session_data_dir = %(here)s/database/beaker_sessions
  27. session_key = galaxysessions
  28. session_secret = changethisinproduction
  29. # Galaxy session security
  30. id_secret = changethisinproductiontoo
  31. # Configuration for debugging middleware
  32. debug = true
  33. use_lint = false
  34. # NEVER enable this on a public site (even test or QA)
  35. # use_interactive = true
  36. # this should be a comma-separated list of valid Galaxy users
  37. #admin_users = user1@example.org,user2@example.org
  38. # Force everyone to log in (disable anonymous access)
  39. require_login = False
  40. # path to sendmail
  41. sendmail_path = /usr/sbin/sendmail
  42. # For use by email messages sent from the tool shed
  43. #smtp_server = smtp.your_tool_shed_server
  44. #email_from = your_tool_shed_email@server
  45. # The URL linked by the "Support" link in the "Help" menu.
  46. #support_url = http://wiki.g2.bx.psu.edu/Support
  47. # Write thread status periodically to 'heartbeat.log' (careful, uses disk space rapidly!)
  48. ## use_heartbeat = True
  49. # Profiling middleware (cProfile based)
  50. ## use_profile = True
  51. # Use the new iframe / javascript based layout
  52. use_new_layout = true
  53. # Serving static files (needed if running standalone)
  54. static_enabled = True
  55. static_cache_time = 360
  56. static_dir = %(here)s/static/
  57. static_images_dir = %(here)s/static/images
  58. static_favicon_dir = %(here)s/static/favicon.ico
  59. static_scripts_dir = %(here)s/static/scripts/
  60. static_style_dir = %(here)s/static/june_2007_style/blue