Safe to expose

Port 80 — HTTP

Unencrypted web traffic. On a modern site its only job is to redirect visitors to HTTPS.

Port
80
Service
HTTP
Protocol
TCP

Security guidance

Fine to leave open. Redirect everything to 443 with a 301 and add HSTS.

Test port 80 yourself

From your own machine, against any host (swap in your domain):

macOS / Linux — netcat

nc -vz example.com 80

Any OS — nmap

nmap -p 80 example.com

Windows — PowerShell

Test-NetConnection example.com -Port 80

open = a service answered on port 80; closed = the host replied but nothing is listening; filtered = a firewall silently dropped the probe. These test from your network — our port checker tests from the outside, the view that matters for security.

Is port 80 open on your server?

Test it from outside your network — the only view that matters.

Check port 80