문제

We have a SharePoint site https://example.com hosted on port 443.

There is another site https://anotherexample.com that should be hosted on same server and without port (i.e. 443).

Both the certificates are issued to different host names (i.e. not wildcard certificate).

How can I achieve above scenario?

Any help is much appreciated!

Edit: I'm working on IIS 8. Is there a need to allocate second IP address to the server or there is a fix through SNI (How can we achieve this scenario using SNI)?

도움이 되었습니까?

해결책

IIS6 does not have the capability of using SNI. You need to allocate a second IP address to the server and bind your IIS sites to specific IP:Port combinations.

다른 팁

You have two choices in this scenario

  1. Get the dedicated IP address for the 2nd site and Bind it to IIS along with Certficate
  2. You can use different port then 443 and Bind the certificate on it. then URL will be https://anotherexample.com:7513 (any custom port you pick)

1st method we implemented and working flawlessly.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top