Andrew Stewart wrote:
Ok, an update. I added the following to my httpd.conf...
RewriteRule ^/static/style/(.*) /var/opt/galaxy/static/june_2007_style/blue/$1 [L] RewriteRule ^/static/(.*) /var/opt/galaxy/static/$1 [L] RewriteRule ^/images/(.*) /var/opt/galaxy/static/images/$1 [L] RewriteRule ^/favicon.ico /var/opt/galaxy/static/favicon.ico [L] RewriteRule ^/robots.txt /var/opt/galaxy/static/robots.txt [L]
As well as moving my galaxy directory to the appropriate location (/var/opt/galaxy). Restarted galaxy process with some success. The only problem now is that the Tools and History panels are giving me 'Not Found' errors... "The requested URL /root/tool_menu was not found on this server" for the Tools pane and the same but for "/history" URL for the History pane. I would have thought that galaxy would have created these directories automatically during installation, but maybe I have to move some things around??
Andrew, The tool_menu and history are dynamic frames and the RewriteRules you've used above don't include the proxy to the Galaxy application itself. Essentially, your Apache server is serving all of the static content but not Galaxy. For that, you also need (after the other rules): RewriteRule ^(.*) http://localhost:8080$1 [P] Assuming your Galaxy server is running on port 8080. --nate