Extend Web Application with ssl and host header
Hello,
I need to extend web application on same port but need to add host header and ssl to it. I am performing this activity by extending the web application but this is working working.
for example
from this link :- http://abc:123
To This link :- https://www.abc.com:123
Please help me!!!
Regards, Sachin
August 11th, 2012 1:11pm
Hello Sachin,
Did you apply SSL in IIS ?
and at the time of extend did you select URL with SSL ? which porta number you have selected while extending the site?
by default it should be 443 for SSL.
hope this helps, thanksWarm Regards, Pratik Vyas | SharePoint Consultant | http://sharepointpratik.blogspot.com/ | Posting is provided "AS IS" with no warranties, and confers no rights
Free Windows Admin Tool Kit Click here and download it now
August 13th, 2012 9:24pm
You cannot use the IIS UI to add a host header to an SSL binding.
To configure SSL host headers, we need to configure the SecureBindings metabase property on each site using the adsutil.vbs script.
For more information, please refer to the following articles:
HTTP 1.1 host headers are not supported when you use SSL
http://support.microsoft.com/default.aspx?scid=kb;EN-US;187504
Configuring SSL Host Headers (IIS 6.0)
http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/596b9108-b1a7-494d-885d-f8941b07554c.mspx?mfr=true
You can also do it via the command line, something like the following:
appcmd set site /site.name:"MySite V2" /+bindings.[protocol='https',bindingInformation='*:443:sitev2.mysite.com']
August 14th, 2012 12:55pm