🔐 Binding an SSL Certificate in IIS
Binding an SSL certificate means connecting your website (domain) to a specific SSL certificate so that secure HTTPS communication works.
This ensures visitors can access your site securely using https://.
📝 Steps to Bind an SSL Certificate in IIS
- Open IIS Manager
- Press
Win + R, typeinetmgr, and press Enter.

- Select the Website
- In the Connections pane (left side), expand the server name.
-
Click on Sites, then select your target website.
-
Open Site Bindings
- In the Actions pane (right side of the IIS Manager window), under Edit Site, click Bindings…

- Add HTTPS Binding
- In the Site Bindings dialog, click Add…

- In the Type dropdown, select https.
- The Add Site Binding window (like the screenshot) will appear.

- Configure the Binding
- Type:
https - IP Address: Leave as
All Unassigned(or choose a specific IP if needed). - Port:
443(default SSL port). - Host name: Enter the site domain (e.g.,
www.WebApplicationSCM.com) if required. - Require Server Name Indication (SNI): Check this if you are hosting multiple HTTPS sites on the same server.
-
SSL certificate: From the dropdown, select the correct certificate for your domain.
-
Save & Restart
- Click OK, then close the Site Bindings window.
- In the Actions pane, click Restart to apply changes.
