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