root/galaxy-central/community_wsgi.ini.sample

リビジョン 2, 2.1 KB (コミッタ: hatakeyama, 14 年 前)

import galaxy-central

行番号 
1# ---- HTTP Server ----------------------------------------------------------
2
3[server:main]
4
5use = egg:Paste#http
6port = 9009
7host = 127.0.0.1
8use_threadpool = true
9threadpool_workers = 10
10
11# ---- Galaxy Webapps Community Interface -------------------------------------------------
12
13[app:main]
14
15# Specifies the factory for the universe WSGI application
16paste.app_factory = galaxy.webapps.community.buildapp:app_factory
17log_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
25file_path = database/community_files
26# Temporary storage for additional datasets, this should be shared through the cluster
27new_file_path = database/tmp
28
29# Where templates are stored
30template_path = lib/galaxy/webapps/community/templates
31
32# Session support (beaker)
33use_beaker_session = True
34session_type = memory
35session_data_dir = %(here)s/database/beaker_sessions
36session_key = galaxysessions
37session_secret = changethisinproduction
38
39# Galaxy session security
40id_secret = changethisinproductiontoo
41
42# Configuration for debugging middleware
43debug = true
44use_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)
53require_login = False
54
55# path to sendmail
56sendmail_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
65use_new_layout = true
66
67# Serving static files (needed if running standalone)
68static_enabled = True
69static_cache_time = 360
70static_dir = %(here)s/static/
71static_images_dir = %(here)s/static/images
72static_favicon_dir = %(here)s/static/favicon.ico
73static_scripts_dir = %(here)s/static/scripts/
74static_style_dir = %(here)s/static/june_2007_style/blue
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。