I have followed the instructions here :
to run a Galaxy behind an NGinx proxy under with HTTPS,
The relevant part of my NGinx config has :
proxy_set_header REMOTE_USER "$loginOnHost";
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-URL-SCHEME https;
it is working well, with the exception that some pages are making external calls
I get a "mixed content" error (in chrome) :
I verified that the URL that the page is trying to access *does* exist under HTTPS,
so it's just a matter of telling galaxy to generate HTTPS links. I would have thought that
this is what "proxy_set_header X-URL-SCHEME https;" did...
Thanks !