I have a windows server that is running two ASP.NET websites. I would like to setup an HTTPS connection for each site. I had initially run into problems because I was trying to use a single IP address for the secure connection for both sites. To fix this I attempted to assign a new IP address to the second site. The original internal IP address was 10.1.1.19 and the new one is 10.1.1.20.
If I run ipconfig /all
I see the following two lines:
IPv4 Address. . . . . . . . . . . : 10.1.1.19(Preferred)
IPv4 Address. . . . . . . . . . . : 10.1.1.20(Preferred)
In my default site I have created bindings for https
to both IP addresses. In the second site I have two bindings to 10.1.1.20 (one for http
and one for https
).
My problem is that now when I attempt to hit the second site using Chrome, it says ERR_CONNECTION_RESET
. If I go back to having a single site using https
and move my second site to the original IP (10.1.1.19
) I can hit the site again.
Based on this can anyone see why I can't hit the second site using the new IP address? Suggestions on how to fix?
I apologize if the solution is obvious, I have very little experience configuring servers.