We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
in the setup where reporting is disabled and mcloud enabled over ssl we do have a mistake in nginx/conf.d/default.conf
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; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:The text was updated successfully, but these errors were encountered: