Hello, I am trying to run galaxy using Apache as the proxy server. This is intended to be internal to our lab. I have galaxy running and working. The problem is that the pages load slowly and then seem to time out after 10 min or so. If I login and click get data then go away for a few minutes , then I come back and click a tool I get: The connection to the server was reset while the page was loading. If I retry the page loads. This makes the page very clunky. httpd.conf changes: <IfModule mod_proxy.c> ProxyRequests On <Proxy * > Order deny,allow Deny from all Allow from * </Proxy> <VirtualHost *:8080> ServerName 192.168.0.240 RewriteEngine on RewriteRule ^/galaxy$ /galaxy/ [R] RewriteRule ^/galaxy/static/style/(.*) /opt/galaxy-dist/static/june_2007_style/blue/$1 [L] RewriteRule ^/galaxy/static/scripts/(.*) /opt/galaxy-dist/static/scripts/packed/$1 [L] RewriteRule ^/galaxy/static/(.*) /opt/galaxy-dist/galaxy-dist/static/$1 [L] RewriteRule ^/galaxy/favicon.ico /opt/galaxy-dist/static/favicon.ico [L] RewriteRule ^/galaxy/robots.txt /opt/galaxy-dist/static/robots.txt [L] RewriteRule ^/galaxy(.*) http://localhost:8080$1 [P] </VirtualHost> I have attached the universe_wsgi.ini and my httpd.conf I am running CentOS. Thank you, Mike