Questions tagged [mtls]
3 questions
0
votes
1 answer
Apache reverse proxy mTLS only between client and proxy, regular TLS between proxy and backends
am trying to create an apache reverse proxy (for webservices) where i need Imutual authentication (mTLS) between clients and the proxy itself, but i don't need mTLS between the proxy & the backends (multiple backends runnings multiple webservices on…

olivierg
- 524
- 2
- 8
- 27
0
votes
0 answers
How do I can make mTLS using HttpClient to check the certificate on the server
I want to check the SSL/TLS certificate on the server side, so, on the client, when I do
var webHandler = new WebRequestHandler();
var cert = new X509Certificate2(Path, Pass);
webHandler.ClientCertificates.Add(cert);
webHandler.AuthenticationLevel…

Roman DotNetDev
- 1
- 1
0
votes
0 answers
nginx default_server breaks mTLS clients when 404 is encountered before other statuses
There's an nginx reverse proxy with several server blocks like this one:
upstream nodes_app3-ui {
server 192.168.1.3:40000;
server 192.168.1.4:40000;
server 192.168.1.5:40000;
}
server {
listen 443 ssl;
…

Karma Fusebox
- 1,114
- 9
- 18