keecode logokeecode
8443

HTTPS Alt

Alternative HTTPS port

TCP
Web

Port Information

Port Number

8443

Protocol

TCP

Category

Web

Common Usage

URL with Port

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

Node.js/Express Server

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

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

Docker Port Mapping

docker run -p 8443:8443 myapp

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

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 8443/tcp

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