Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable port 80 on IIS while keeping port 443 open?

I have a potentially simple question, but after searching the forums could not find a clear answer:

Per security finding, we need to disable port 80 on IIS (on Windows 2008 Enterprise, IIS 7.5) to make sure a potential intruder cannot connect to port 80 and is forced to use port 443 for SSL.

The web application we have (vendor app written in .NET) does not use port 80 so it's safe to disable it.

Do I just remove port 80 from the bindings setting? How can I easily disable port 80 on IIS?

like image 977
user1385969 Avatar asked Mar 08 '17 15:03

user1385969


Video Answer


1 Answers

enter image description here

In IIS, click your web site, then click Bindings and Remove the Port 80 entry, you must have the other entry for 443 before you can remove the one for Port 80.

like image 98
TrevorBrooks Avatar answered Sep 22 '22 12:09

TrevorBrooks