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

reference to default upstream is not ssl when reporting is disabled #578

Open
vdelendik opened this issue Nov 7, 2023 · 0 comments
Open
Labels
Milestone

Comments

@vdelendik
Copy link
Contributor

in the setup where reporting is disabled and mcloud enabled over ssl we do have a mistake in
nginx/conf.d/default.conf

all references to stf use https except default / location. as a workaround we manually updated to https:

    location / {
      set $upstream_default stf-proxy:80;
      proxy_set_header Host stf-proxy;
      proxy_pass https://$upstream_default;
      proxy_http_version 1.1;

      # two below headers to support websocket connection
      proxy_set_header Upgrade $http_upgrade;
      proxy_set_header Connection upgrade;
    }
@vdelendik vdelendik added the bug label Nov 7, 2023
@vdelendik vdelendik added this to the 2.6 milestone Nov 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: To do
Development

No branches or pull requests

1 participant