1 Answer
- Newest
- Most votes
- Most comments
0
As it turns out, we discovered that our requests were timing out because IIS doesn't support proxy protocol. That's okay, because 2-way SSL doesn't utilize x-forwarded-for headers.
We got it to work as follows:
-
Configure the ELB to pass-through SSL to the server (Protocol = TCP, Port = 443).
-
Ensure proxy mode is disabled on the ELB (this is the default setting).
-
Configure the IIS site to accept client-side SSL certificates, using these instructions.
-
Client-Side app adds the client-cert to each rest request
-
Server-Side app's request handler inspects requests for matching client-cert thumbprint
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 10 months ago