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
If your stash instance is set up with an self singed SSL certificate you cant connect to it. In the logs you'll see this error:
tls: failed to verify certificate: x509: certificate signed by unknown authority
The following workaround solves it for me but you have to re-do it every time the container is updated:
apk add ca-certificates
update-ca-certificates
The best would be to have a config flag to set the cert properly or to ignore this error/skip the validation at all.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If your stash instance is set up with an self singed SSL certificate you cant connect to it. In the logs you'll see this error:
tls: failed to verify certificate: x509: certificate signed by unknown authority
The following workaround solves it for me but you have to re-do it every time the container is updated:
apk add ca-certificates
update-ca-certificates
The best would be to have a config flag to set the cert properly or to ignore this error/skip the validation at all.
The text was updated successfully, but these errors were encountered: