vps3317792

edit
Provider InterServer IP 163.245.222.174 Cost $6.00/monthly Host KVM502 Status Active
Deployments
SoftwareClientPortDomain
Nocturne hozzae 5700 noc.hozzae.com
cBay hozzae 5000 cbay.hozzae.com
RouteMaster neighbor 5005 routes.hozzae.com
Nginx Configs
cat /etc/nginx/sites-enabled/*
Listening Ports
ss -tlnp | awk '/LISTEN/{print $4}' | grep -vE ':(22|80|443)$' | while read addr; do port=${addr##*:}; pid=$(ss -tlnp | grep ":$port " | grep -oP 'pid=\K\d+' | head -1); echo "port $port → $(readlink /proc/$pid/cwd 2>/dev/null) → $(cat /proc/$pid/cmdline 2>/dev/null | tr '\0' ' ')"; done
New Server Setup

Run once when this server is first provisioned. Install nginx, certbot, python, firewall.

sudo apt update && sudo apt upgrade -y
sudo apt install -y nginx certbot python3-certbot-nginx python3 python3-pip python3-venv git ufw
sudo ufw allow OpenSSH
sudo ufw allow 'Nginx Full'
sudo ufw --force enable
mkdir -p ~/tmp
sudo rm -f /etc/nginx/sites-enabled/default
sudo systemctl restart nginx