Closed carlsonp closed 1 year ago
Hi I think this is a similar issue as https://github.com/openanalytics/shinyproxy/issues/435
Can you try changing this line in your config:
proxy_set_header X-Forwarded-Protocol $scheme;
to
proxy_set_header X-Forwarded-Proto $scheme;
(see https://shinyproxy.io/documentation/security/#https-ssl--tls )
Next you'll have to add the following configuration to ShinyProxy (on the root level of the configuration file, not nested under proxy):
server:
forward-headers-strategy: native
```yaml
Thank you so much! This fixed the issue, cheers.
We had a running and successfully setup version of ShinyProxy
3.0.1
setup with LDAP as our authentication. We upgraded to3.0.2
. Now when we login, it goes to the following URL:https://ourserver.com/auth-success
, with a message on the screen ofTest
. It does not redirect properly to the main page. If we adjust the URL and take offauth-success
it loads up and we can see the main page with a list of the Shiny applications to run. There are no error messages in the Docker log file.We also have nginx setup as a reverse proxy. Our
nginx.conf
file looks like this:I don't see any error messages in the Docker nginx logs.
Does anyone have any suggestions on what to try? I didn't notice anything in the release note that would indicate any config changes to make for LDAP. Thanks