curl_easy_perform() failed - no error information #751
Replies: 4 comments 5 replies
-
You say "I have no errors at all" but I see an error when the module reaches out to the OpenIDC server to get configuration:
Do you have an OpenIDC server running at "https://domain" and is it reachable from your Apache HTTPD? |
Beta Was this translation helpful? Give feedback.
-
seems a local config issue: what version of the module are you using, which (exact) platform are you on, where did you get the module binary from, is there more than one version of curl on the box, which ca-bundle is commandline curl using, can you use that with |
Beta Was this translation helpful? Give feedback.
-
I seem to get a similar error, the error information is empty:
Is there any way to determine why curl fails? I assume a proxy problem, we have a corporate proxy server running. I did my best to disable the proxy as browser, OIDC server and http server run within the corporate network. Does curl_easy_perform try to verify the certificate chain? thx |
Beta Was this translation helpful? Give feedback.
-
Update:
Not a lot smarter now, but at least a starting point. UPDATE: Got smarter now, this here https://stackoverflow.com/questions/9922562/how-to-resolve-curl-error-7-couldnt-connect-to-host points to the following command that actually helps making progress:
After that command curl can read the .well-known/openid-configuration, now OIDC gets stuck in the next step with
|
Beta Was this translation helpful? Give feedback.
-
trying mod_auth_openidc on RHEL8
curl works
# curl https://domain/.well-known/openid-configuration
{"issuer": "https://domain" .... }
but calls fail in mod_auth_openidc
there is no proxy
config:
What am I missing? Everyone else seems to have proxy or SSL errors. Here I have no errors at all and I can't think of what to do.
Beta Was this translation helpful? Give feedback.
All reactions