| 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?host=/var/run/postgresql |
|---|
| 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 |
# Where templates are stored |
|---|
| 30 |
template_path = lib/galaxy/webapps/reports/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 |
# Configuration for debugging middleware |
|---|
| 40 |
debug = true |
|---|
| 41 |
use_lint = false |
|---|
| 42 |
|
|---|
| 43 |
# NEVER enable this on a public site (even test or QA) |
|---|
| 44 |
# use_interactive = true |
|---|
| 45 |
|
|---|
| 46 |
# Admin Password |
|---|
| 47 |
admin_pass = "galaxy" |
|---|
| 48 |
|
|---|
| 49 |
# path to sendmail |
|---|
| 50 |
sendmail_path = /usr/sbin/sendmail |
|---|
| 51 |
|
|---|
| 52 |
# Address to join mailing list |
|---|
| 53 |
mailing_join_addr = galaxy-user-join@bx.psu.edu |
|---|
| 54 |
|
|---|
| 55 |
# Write thread status periodically to 'heartbeat.log' (careful, uses disk space rapidly!) |
|---|
| 56 |
## use_heartbeat = True |
|---|
| 57 |
|
|---|
| 58 |
# Profiling middleware (cProfile based) |
|---|
| 59 |
## use_profile = True |
|---|
| 60 |
|
|---|
| 61 |
# Mail |
|---|
| 62 |
smtp_server = coltrane.bx.psu.edu |
|---|
| 63 |
error_email_to = galaxy_bugs@bx.psu.edu |
|---|
| 64 |
|
|---|
| 65 |
# Use the new iframe / javascript based layout |
|---|
| 66 |
use_new_layout = true |
|---|
| 67 |
|
|---|
| 68 |
# Serving static files (needed if running standalone) |
|---|
| 69 |
static_enabled = True |
|---|
| 70 |
static_cache_time = 360 |
|---|
| 71 |
static_dir = lib/galaxy/webapps/reports/static |
|---|
| 72 |
static_images_dir = lib/galaxy/webapps/reports/static/images |
|---|
| 73 |
static_favicon_dir = lib/galaxy/webapps/reports/static/favicon.ico |
|---|
| 74 |
static_scripts_dir = lib/galaxy/webapps/reports/static/scripts |
|---|
| 75 |
static_style_dir = lib/galaxy/webapps/reports/static/january_2008_style/blue |
|---|
| 76 |
|
|---|