Questions tagged [mtls]

The tag has no usage guidance.

Filter by
Sorted by
Tagged with
0 votes
1 answer
27 views

What kind of certificate (signed by public authority) is needed for mTLS?

I have nginx setup with mTLS with manually created CA certificate in virtual host. For SSL we use Let's encrypt. ssl_client_certificate /etc/ssl/ca.crt; ssl_verify_client on; I am able to connect to ...
knagode's user avatar
  • 151
0 votes
0 answers
329 views

mTLS with NGINX & Let's encrypt - 400 The SSL certificate error

I use nginx and let's encrypt. Server is running on server.io. I need to setup mTLS and therefore I need client certificate as well. I created another Let's encrypt certificate for client.io (I used ...
knagode's user avatar
  • 151
0 votes
0 answers
17 views

mTLS, Openshift route, and reencrypt mode

I'm not a cluster admin and don't want to enable mTLS on all routes/ingress. Just one, for a specific service. So a lot of the "how to enable mTLS on Openshift" doesn't apply. Anyway, I ...
Max's user avatar
  • 1
0 votes
1 answer
70 views

nginx in front of Rails

We want to put nginx with mTLS in front of our Rails app. We want that mTLS is turned on only if request goes trough specific domain. E.g.: I want that https://mypage.com works without mTLS, however I ...
knagode's user avatar
  • 151
0 votes
1 answer
752 views

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 ...
olivierg's user avatar
  • 524
0 votes
0 answers
202 views

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....
Roman DotNetDev's user avatar
0 votes
0 answers
92 views

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; }...
Karma Fusebox's user avatar