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