-
Notifications
You must be signed in to change notification settings - Fork 75
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
Unable to Ignore TLS Error #193
Comments
Oops, I think I did not read the question thoroughly. Where did you try to specify the parameter for the docker container? |
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
Hey there,
I for example run into this error with minio. The docker logs looks like this:
I guess a global parameter to set --insecure-tls would maybe make sense? Or is there a trick I'm missing? Any help is much appreciated. Keep up the great work! |
I confirmed I can bypass the issues with SKIP_INIT for the backup container. However in my
Error is: tls: failed to verify certificate: x509: certificate is valid for localhost, not my-domain.com |
Ah actually this is all fine it just has to be |
I am encountering an issue with configuring Restic within a Docker container to ignore TLS errors. My setup involves using Rclone configured with Nextcloud via WebDAV. When I use Rclone directly on the host server (Ubuntu), I am able to bypass the TLS error by ignoring it. However, when attempting to use Rclone within resticker Docker container, I am unable to find a way to ignore the TLS error.
The problem arises because Restic treats the --insecure-tls parameter as a global parameter rather than a parameter specific to the backup command. As a result, I cannot pass the --insecure-tls flag directly to the backup command when running Restic within the Docker container.
Is there a workaround that does not involve having the certificate?
The text was updated successfully, but these errors were encountered: