pimg commented on issue #10979:
URL: https://github.com/apache/apisix/issues/10979#issuecomment-1983375943

   ok I found the issue. Indeed  the API of the forked `resty-http` library 
differs from the upstream.
   
   so instead of: 
   ```
   local ok, err = httpc:connect {
        ssl_client_cert = cert,
        ssl_client_priv_key = key,
   }
   ```
   The key material of the client should be provided as:
   ```
   local ok, err = httpc:connect {
        ssl_cert = cert_in_pem_format,
        ssl_key = key_in_pem_format,
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to