So, I set
galaxy_infrastructure_url: http://localhost:8000
since I see in our nginx setup:
[root@galaxy-hepp config]# cat /etc/nginx/conf.d/galaxy-gie-proxy.conf
server {
# Listen on port 443
listen 443 ssl;
(.... various ssl settings)
client_max_body_size 2G;
proxy_intercept_errors on;
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
#Proxy all requests to the GIE Proxy application
location / {
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Host $host;
#proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://localhost:8000;
}
}
But in the galaxy.conf I see:
[root@galaxy-hepp config]# cat /etc/nginx/conf.d/galaxy.conf
server {
listen 443 ssl;
server_name galaxy-hepp.hpc.uio.no;
.....(various settings)
location / {
uwsgi_pass 127.0.0.1:8080;
uwsgi_param UWSGI_SCHEME $scheme;
include uwsgi_params;
}
}
Which would be the correct to use?
I read from the config doc pages that the default is http://localhost:8080
With the http://localhost:8000 the same error message occurs as the one in the screenshot above.




