Hello everyone,

I am trying to setup a Galaxy instance for a multi-user production environment and I tried to follow the instructions here:

https://wiki.galaxyproject.org/Admin/Config/Performance/Scaling
https://wiki.galaxyproject.org/Admin/Config/Performance/ProductionServer
https://wiki.galaxyproject.org/Admin/Config/ApacheProxy

but when I tried to start my galaxy instance (GALAXY_RUN_ALL=1 sh run.sh --daemon) I got the following error in my browser:

Bad Gateway

The proxy server received an invalid response from an upstream server.


I don't get any errors from the paster.log files so I am guessing the error is somewhere in my apache configuration although I can't see where it could be.


Has anyone encountered this problem before?

Kind regards,
Makis


P.S. My apache configuration is as follows:

I added that to my apache httpd.conf file:

#for galaxy
    #RewriteRule ^/galaxy(.*) http://localhost:8091$1 [P]
    RewriteRule ^/galaxy$ /galaxy/ [R]
    RewriteRule ^/galaxy/static/style/(.*) /home/galaxy/galaxy/static/june_2007_style/blue/$1 [L]
    RewriteRule ^/galaxy/static/scripts/(.*) /home/galaxy/galaxy/static/scripts/packed/$1 [L]
    RewriteRule ^/galaxy/static/(.*) /home/galaxy/galaxy/static/$1 [L]
    RewriteRule ^/galaxy/favicon.ico /home/galaxy/galaxy/static/favicon.ico [L]
    RewriteRule ^/galaxy/robots.txt /home/galaxy/galaxy/static/robots.txt [L]

    LoadModule uwsgi_module /etc/httpd/modules/mod_uwsgi.so

    <Location "/galaxy">
    Sethandler uwsgi-handler
    uWSGISocket 127.0.0.1:4001
    uWSGImaxVars 512
    </Location>

I am also attaching my job_conf.xml and galaxy.ini file.