forked from jmchilton/galaxy-central
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tool_shed_wsgi.ini.sample
108 lines (81 loc) · 3.65 KB
/
tool_shed_wsgi.ini.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# ---- HTTP Server ----------------------------------------------------------
[server:main]
use = egg:Paste#http
port = 9009
# The address on which to listen. By default, only listen to localhost (the tool shed will not
# be accessible over the network). Use '0.0.0.0' to listen on all available network interfaces.
#host = 0.0.0.0
host = 127.0.0.1
use_threadpool = true
threadpool_workers = 10
# Set the number of seconds a thread can work before you should kill it (assuming it will never finish) to 3 hours.
threadpool_kill_thread_limit = 10800
# ---- Galaxy Webapps Community Interface -------------------------------------------------
[app:main]
# Specifies the factory for the universe WSGI application
paste.app_factory = galaxy.webapps.tool_shed.buildapp:app_factory
log_level = DEBUG
# Database connection
database_file = database/community.sqlite
# You may use a SQLAlchemy connection string to specify an external database instead
#database_connection = postgres:///community_test?host=/var/run/postgresql
# Where the hgweb.config file is stored. The default is the Galaxy installation directory.
#hgweb_config_dir = None
# Where tool shed repositories are stored.
file_path = database/community_files
# Temporary storage for additional datasets, this should be shared through the cluster
new_file_path = database/tmp
# Session support (beaker)
use_beaker_session = True
session_type = memory
session_data_dir = %(here)s/database/beaker_sessions
session_key = galaxysessions
session_secret = changethisinproduction
# -- Users and Security
# Galaxy encodes various internal values when these values will be output in
# some format (for example, in a URL or cookie). You should set a key to be
# used by the algorithm that encodes and decodes these values. It can be any
# string. If left unchanged, anyone could construct a cookie that would grant
# them access to others' sessions.
id_secret = changethisinproductiontoo
# User authentication can be delegated to an upstream proxy server (usually
# Apache). The upstream proxy should set a REMOTE_USER header in the request.
# Enabling remote user disables regular logins. For more information, see:
# http://wiki.g2.bx.psu.edu/Admin/Config/Apache%20Proxy
#use_remote_user = False
# Configuration for debugging middleware
debug = true
use_lint = false
# NEVER enable this on a public site (even test or QA)
# use_interactive = true
# this should be a comma-separated list of valid Galaxy users
#admin_users = [email protected],[email protected]
# Force everyone to log in (disable anonymous access)
require_login = False
# path to sendmail
sendmail_path = /usr/sbin/sendmail
# Number of saved tool test results produced by the install and test framework for each repository.
#num_tool_test_results_saved = 5
# For use by email messages sent from the tool shed
#smtp_server = smtp.your_tool_shed_server
#email_from = your_tool_shed_email@server
# The URL linked by the "Support" link in the "Help" menu.
#support_url = http://wiki.g2.bx.psu.edu/Support
# Write thread status periodically to 'heartbeat.log' (careful, uses disk space rapidly!)
## use_heartbeat = True
# Profiling middleware (cProfile based)
## use_profile = True
# Use the new iframe / javascript based layout
use_new_layout = true
# Show a message box under the masthead.
#message_box_visible = False
#message_box_content = None
#message_box_class = info
# Serving static files (needed if running standalone)
static_enabled = True
static_cache_time = 360
static_dir = %(here)s/static/
static_images_dir = %(here)s/static/images
static_favicon_dir = %(here)s/static/favicon.ico
static_scripts_dir = %(here)s/static/scripts/
static_style_dir = %(here)s/static/june_2007_style/blue