[hg] galaxy 3006: Add Paste#gzip and visualization module option...
details: http://www.bx.psu.edu/hg/galaxy/rev/4fdf952e413e changeset: 3006:4fdf952e413e user: Kanwei Li <kanwei@gmail.com> date: Tue Nov 10 16:49:05 2009 -0500 description: Add Paste#gzip and visualization module options to universe_wsgi.ini.sample diffstat: universe_wsgi.ini.sample | 17 ++++++++++++++++- 1 files changed, 16 insertions(+), 1 deletions(-) diffs (29 lines): diff -r 6eddc13b1d3b -r 4fdf952e413e universe_wsgi.ini.sample --- a/universe_wsgi.ini.sample Tue Nov 10 16:02:49 2009 -0500 +++ b/universe_wsgi.ini.sample Tue Nov 10 16:49:05 2009 -0500 @@ -8,9 +8,24 @@ use_threadpool = true threadpool_workers = 10 +# ---- HTTP gzip compression ---- +# If planning to run Galaxy as a production service, we recommend running Galaxy +# through a proxy and enabling gzip compression there (instructions at +# http://bitbucket.org/galaxy/galaxy-central/wiki/Config/ProductionServer ) +# but you may also turn on Paste's built-in gzip compressor by uncommenting the following lines +# and also the 'filter-with = gzip' line under [app:main]. This will reduce network traffic +# and should speed up the interface, especially the visualization module. +# [filter:gzip] +# use = egg:Paste#gzip + # ---- Galaxy Web Interface ------------------------------------------------- +[app:main] -[app:main] +# Uncomment following line to enable Paste gzip compression +# filter-with = gzip + +# Uncomment following line below to enable visualization module +# enable_tracks = True # Specifies the factory for the universe WSGI application paste.app_factory = galaxy.web.buildapp:app_factory
participants (1)
-
Greg Von Kuster