0

If I have the A record in the DNS pointed to a unique IP address on our server, but have mutiple IP addresses associated with the host headers, will this cause an issue?

masegaloeh
  • 17,978
  • 9
  • 56
  • 104

1 Answers1

1

You can't have multiple hosts using the same individual IP running SSL. Each one needing SSL must be unique.

You can however; 1. Have an SSL cert for www.site.com using IP 192.168.1.2 w/ host headers 2. Make a second host, www.company.com, using IP 192.168.1.2 w/ host headers. However this can not be assigned SSL using this IP.

Also, if you were to go to https:// www.company.com, you'd get a browser error about the certificate not matching https://www.site.com.

mowarren
  • 71
  • 2
  • you can SORT OF get around this by using alternate ports and rewrite rules (if they exist in IIS.) but yes, SSL encrypts the HTTP data, so the server does the SSL handshake before checking the HTTP header for the RequestURL. – neoice Oct 18 '09 at 06:04