root/galaxy-central/reports_wsgi.ini @ 3

リビジョン 3, 1.9 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1# ---- HTTP Server ----------------------------------------------------------
2
3[server:main]
4
5use = egg:Paste#http
6port = 9001
7host = 127.0.0.1
8use_threadpool = true
9threadpool_workers = 10
10
11# ---- Galaxy Webapps Report Interface -------------------------------------------------
12
13[app:main]
14
15# Specifies the factory for the universe WSGI application
16paste.app_factory = galaxy.webapps.reports.buildapp:app_factory
17log_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
25file_path = database/files
26# Temporary storage for additional datasets, this should be shared through the cluster
27new_file_path = database/tmp
28
29# Session support (beaker)
30use_beaker_session = True
31session_type = memory
32session_data_dir = %(here)s/database/beaker_sessions
33session_key = galaxysessions
34session_secret = changethisinproduction
35
36# Configuration for debugging middleware
37# debug = true
38use_lint = false
39
40# NEVER enable this on a public site (even test or QA)
41# use_interactive = true
42
43# path to sendmail
44sendmail_path = /usr/sbin/sendmail
45
46# Address to join mailing list
47mailing_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
60use_new_layout = true
61
62# Serving static files (needed if running standalone)
63static_enabled = True
64static_cache_time = 360
65static_dir = %(here)s/static/
66static_images_dir = %(here)s/static/images
67static_favicon_dir = %(here)s/static/favicon.ico
68static_scripts_dir = %(here)s/static/scripts/
69static_style_dir = %(here)s/static/june_2007_style/blue
70
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。