Question: Running Galaxy Trunk Release On Localhost And Serving It Via Proxy
0
Ryan Morin • 50 wrote:
Hello.
I am currently running the latest version of galaxy on my web server
at
localhost:8080. I have the server set up to proxy to this port to
allow
access to galaxy (using the information posted here:
www.cherrypy.org/wiki/BehindApache) I tried using both the
rewriterule
method and the proxypass method to no avail. I'm just wondering if
you
might have encountered this situation before. When I go to the URL
that
should proxy to galaxy, I get the title of the page ('galaxy') and
error
404 (http://srna.mbb.sfu.ca/myrna). I have included the relevant
portion
of my httpd.conf file if you are interested.
I would appreciate any advice you could give as you are all very
experienced with the subtleties of CherryPy.
Thanks.
Ryan
by the way, I am running the latest release of SuSE on this server.
ProxyRequests On
<proxy *="">
Order allow,deny
Deny from none
Allow from all
</proxy>
#tried with this first, got the same result
#RewriteEngine on
#RewriteRule ^/myrna(.*) http://localhost:8000/$1 [P]
<location myrna="">
Order Allow,Deny
Deny from none
Allow from all
ProxyPass http://localhost:8000
ProxyPassReverse http://localhost:8000
RequestHeader set CP-Location /myapp
</location>
ADD COMMENT
• link
•
modified 12.6 years ago
by
Anton Nekrutenko ♦ 1.7k
•
written
12.6 years ago by
Ryan Morin • 50