Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SODAR proxy for IGV connections #1

Open
mikkonie opened this issue Dec 7, 2021 · 0 comments
Open

Add SODAR proxy for IGV connections #1

mikkonie opened this issue Dec 7, 2021 · 0 comments
Labels
feature New feature or request help wanted Extra attention is needed

Comments

@mikkonie
Copy link
Contributor

mikkonie commented Dec 7, 2021

Our SODAR use case and existing Davrods setup contain a feature to proxy SODAR request through Davrods. This is done for IGV integration to avoid the need to authenticate multiple times when opening an IGV session via SODAR.

In the existing setup this is done using SSLProxyEngine and ProxyPass:

{% if apache_enable_ssl %}
<VirtualHost *:443>
    SSLEngine on
    # ...
    {% if davrods_sodar_enable_proxy %}
    SSLProxyEngine On
    ProxyPass /__sodar/ {{ davrods_sodar_url }}
    {% endif %}
    # ...

Alas, this won't work with the current Docker image, as we intended to only provide HTTP connections in the image itself and route HTTPS with Traefik in the actual deployment environment.

To make this work would either require to set up HTTPS in Apache itself, or maybe use some Traefik trickery I'm not aware of. Suggestions are welcome.

@mikkonie mikkonie added the feature New feature or request label Dec 7, 2021
@mikkonie mikkonie added the help wanted Extra attention is needed label Oct 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature or request help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

1 participant