From a1532e90759d0bb191e0dcdb5b367be09292166b Mon Sep 17 00:00:00 2001 From: Leonardo Guermandi Curvelo Date: Sat, 22 Mar 2025 22:32:18 -0300 Subject: [PATCH] Updated README.md: HTTPS client authentication --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9c7bc80d..18b92b6e 100644 --- a/README.md +++ b/README.md @@ -1069,7 +1069,7 @@ Visit `http://test.example.com` in the browser and now you are prompted to enter ### Require HTTPS client certificate for Web Services -Anyone who can guess your HTTPS tunnel URL can access your local web server unless you protect it with a [Client Certificate](https://en.wikipedia.org/wiki/Transport_Layer_Security#Client-authenticated_TLS_handshake). +Anyone who can guess your HTTPS tunnel URL can access your local web server unless you protect it with a client certificate. This [mutual authentication](https://en.wikipedia.org/wiki/Mutual_authentication) validates the HTTPS client's certificate on all requests, with each accepted certificate file specified in frpc's configure file. @@ -1084,7 +1084,7 @@ customDomains = ["test.example.com"] [proxies.plugin] type = "https2http" localAddr = "127.0.0.1:80" - crtPath = server.crt" + crtPath = "server.crt" keyPath = "key.pem" clientCertificates = ["authorizedClient_cert.pem"] ```