Need to migrate your e-mails to a new server? Free and paid versions of our online tool available.
Hero Image

Server Setup Guides

Harden SSH on RHEL 9

Harden SSH on RHEL 9

Back up config

cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak

Key settings (/etc/ssh/sshd_config)

Port 2222
PermitRootLogin no
PasswordAuthentication no
PubkeyAuthentication yes
AllowUsers deploy alice
Protocol 2
ClientAliveInterval 600
ClientAliveCountMax 0
X11Forwa...
7th May 2026

Harden SSH on Ubuntu 24.04

Harden SSH on Ubuntu 24.04

Back up config

cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak

Key settings (/etc/ssh/sshd_config)

Port 2222
PermitRootLogin no
PasswordAuthentication no
PubkeyAuthentication yes
AllowUsers deploy alice
Protocol 2
ClientAliveInterval 600
ClientAliveCountMax 0
X1...
7th May 2026

Install Apache HTTP Server on RHEL 9

Install Apache HTTP Server on RHEL 9

Step 1 – Install

subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms
dnf install -y httpd mod_ssl
systemctl enable --now httpd

Step 2 – Open firewall ports

firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --ad...
7th May 2026

Install Docker on Arch Linux

Install Docker on Arch Linux

Step 1 – Install

pacman -S --noconfirm docker docker-compose
systemctl enable --now docker

Step 2 – Add user to docker group

usermod -aG docker $USER && newgrp docker

Step 3 – Verify

docker --version
docker run --rm hello-world

Step 4 – Example compose.yml

...
7th May 2026

Install Docker on Debian 12

Install Docker on Debian 12

Step 1 – Install

install -m 0755 -d /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/$(. /etc/os-release && echo "$ID")/gpg | gpg --dearmor -o /etc/apt/keyrings/docker.gpg
chmod a+r /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture...
7th May 2026

Install Docker on NetBSD 10

Install Docker on NetBSD 10

Step 1 – Install

# Docker is not natively available on NetBSD 10.
# Consider running a Linux VM or using podman.

Step 2 – Add user to docker group

usermod -aG docker $USER && newgrp docker

Step 3 – Verify

docker --version
docker run --rm hello-world

Step 4 –

...
7th May 2026