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
Hi,
I am getting this error because the ssl certificate is self-signed. Is there a way to disable certificate validation in https/ssl connections?
Error: An error occurred, the page has not been created because: SSL_connect returned=1 errno=0 state=error: certificate verify failed
Call: asciidoctor-confluence --host https://myconfluence --spaceKey X --title Title --username x --password y README.adoc
Regards and thanks in advance.
The text was updated successfully, but these errors were encountered:
I have exactly the same problem.
Sorry, something went wrong.
There is a way to bypass SSL Verification.
I updated bin/asciidoctor-confluence file
#!/usr/bin/env ruby require 'openssl' require 'rubygems' if RUBY_VERSION < '1.9' require File.join File.dirname(__FILE__), '../lib/asciidoctor/confluence/invoker' OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE result_code = Asciidoctor::Confluence::Invoker.invoke ARGV exit result_code
I still have a warning but it works.
/usr/lib/ruby/gems/2.4.0/gems/asciidoctor-confluence-0.0.2/bin/asciidoctor-confluence:7: warning: already initialized constant OpenSSL::SSL::VERIFY_PEER
for information, I am using the asciidoctor/docker-asciidoctor docker image.
I prepared PR #24 to solve this problem
No branches or pull requests
Hi,
I am getting this error because the ssl certificate is self-signed. Is there a way to disable certificate validation in https/ssl connections?
Error:
An error occurred, the page has not been created because:
SSL_connect returned=1 errno=0 state=error: certificate verify failed
Call:
asciidoctor-confluence --host https://myconfluence --spaceKey X --title Title --username x --password y README.adoc
Regards and thanks in advance.
The text was updated successfully, but these errors were encountered: