From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.8 required=3.0 tests=AWL,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id 503F61F43D for ; Thu, 23 Mar 2023 18:02:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230418AbjCWSCE (ORCPT ); Thu, 23 Mar 2023 14:02:04 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51104 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229644AbjCWSCD (ORCPT ); Thu, 23 Mar 2023 14:02:03 -0400 Received: from cloud.peff.net (cloud.peff.net [104.130.231.41]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9A75AE1AA for ; Thu, 23 Mar 2023 11:02:01 -0700 (PDT) Received: (qmail 24008 invoked by uid 109); 23 Mar 2023 18:02:00 -0000 Received: from Unknown (HELO peff.net) (10.0.1.2) by cloud.peff.net (qpsmtpd/0.94) with ESMTP; Thu, 23 Mar 2023 18:02:00 +0000 Authentication-Results: cloud.peff.net; auth=none Received: (qmail 26510 invoked by uid 111); 23 Mar 2023 18:02:00 -0000 Received: from coredump.intra.peff.net (HELO sigill.intra.peff.net) (10.0.0.2) by peff.net (qpsmtpd/0.94) with (TLS_AES_256_GCM_SHA384 encrypted) ESMTPS; Thu, 23 Mar 2023 14:02:00 -0400 Authentication-Results: peff.net; auth=none Date: Thu, 23 Mar 2023 14:01:59 -0400 From: Jeff King To: Stanislav M Cc: Junio C Hamano , Stanislav Malishevskiy via GitGitGadget , git@vger.kernel.org, Stanislav Malishevskiy Subject: Re: [PATCH v2] http: add support for different sslcert and sslkey types. Message-ID: <20230323180159.GA1015351@coredump.intra.peff.net> References: <20230321172223.GA3119834@coredump.intra.peff.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Thu, Mar 23, 2023 at 12:33:59PM +0300, Stanislav M wrote: > I want to do some clarification there. Those changes are not related > to http or https directly. > That only configures curl to know how to access the certificate and > key locally on the client box, so if the way is wrong there is a > simple error: Certificate or key not found. Yes, but I'm not sure if there is a way for Git to trigger curl to look at the certificate that does not involve feeding it an https URL (and we want a valid one, because we want to see that it correctly speaks to the server). -Peff