keecode logokeecode
80

HTTP

Hypertext Transfer Protocol

TCP
Web

Port Information

Port Number

80

Protocol

TCP

Category

Web

Common Usage

URL with Port

http://localhost:80
https://example.com:80

Node.js/Express Server

const express = require('express');
const app = express();
const PORT = 80;

app.listen(PORT, () => {
  console.log(`Server running on port ${PORT}`);
});

Docker Port Mapping

docker run -p 80:80 myapp

# In docker-compose.yml
ports:
  - "80:80"

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 80/tcp

# Check if port is in use
netstat -an | grep 80