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

Server Setup Guides

Install Gitea on OpenBSD 7.5

Install Gitea on OpenBSD 7.5

Step 1 – Create git user and download binary

useradd -r -m -d /home/git -s /bin/bash git
VERSION=1.22.0
wget -O /usr/local/bin/gitea https://dl.gitea.com/gitea/${VERSION}/gitea-${VERSION}-linux-amd64
chmod +x /usr/local/bin/gitea

Step 2 – Directories

mkdir -p /va...
7th May 2026

Install Gitea on RHEL 9

Install Gitea on RHEL 9

Step 1 – Create git user and download binary

useradd -r -m -d /home/git -s /bin/bash git
VERSION=1.22.0
wget -O /usr/local/bin/gitea https://dl.gitea.com/gitea/${VERSION}/gitea-${VERSION}-linux-amd64
chmod +x /usr/local/bin/gitea

Step 2 – Directories

mkdir -p /var/lib...
7th May 2026

Install Gitea on Ubuntu 24.04

Install Gitea on Ubuntu 24.04

Step 1 – Create git user and download binary

useradd -r -m -d /home/git -s /bin/bash git
VERSION=1.22.0
wget -O /usr/local/bin/gitea https://dl.gitea.com/gitea/${VERSION}/gitea-${VERSION}-linux-amd64
chmod +x /usr/local/bin/gitea

Step 2 – Directories

mkdir -p /v...
7th May 2026

Install Grafana on Arch Linux

Install Grafana on Arch Linux

Step 1 – Install

pacman -S --noconfirm grafana
systemctl enable --now grafana

Step 2 – Access

http://your-server:3000 — default admin / admin (change immediately).

Step 3 – Add Prometheus data source

  1. Configuration → Data Sources → Add data source
  2. Se...
7th May 2026

Install Grafana on Debian 12

Install Grafana on Debian 12

Step 1 – Install

wget -q -O - https://packages.grafana.com/gpg.key | gpg --dearmor | tee /usr/share/keyrings/grafana.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/grafana.gpg] https://packages.grafana.com/oss/deb stable main" | tee /etc/apt/sources.list.d/...
7th May 2026

Install Grafana on NetBSD 10

Install Grafana on NetBSD 10

Step 1 – Install

# Download from https://grafana.com/grafana/download

Step 2 – Access

http://your-server:3000 — default admin / admin (change immediately).

Step 3 – Add Prometheus data source

  1. Configuration → Data Sources → Add data source
  2. Select Pro...
7th May 2026

Install Grafana on Ubuntu 24.04

Install Grafana on Ubuntu 24.04

Step 1 – Install

wget -q -O - https://packages.grafana.com/gpg.key | gpg --dearmor | tee /usr/share/keyrings/grafana.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/grafana.gpg] https://packages.grafana.com/oss/deb stable main" | tee /etc/apt/sources.list...
7th May 2026

Install HAProxy on Arch Linux

Install HAProxy on Arch Linux

Step 1 – Install

pacman -S --noconfirm haproxy
systemctl enable --now haproxy

Step 2 – Basic /etc/haproxy/haproxy.cfg

global
    log /dev/log local0
    chroot /var/lib/haproxy
    stats socket /run/haproxy/admin.sock mode 660 level admin
    user haproxy
    g...
7th May 2026

Install HAProxy on Debian 12

Install HAProxy on Debian 12

Step 1 – Install

apt update && apt upgrade -y
apt install -y haproxy
systemctl enable --now haproxy

Step 2 – Basic /etc/haproxy/haproxy.cfg

global
    log /dev/log local0
    chroot /var/lib/haproxy
    stats socket /run/haproxy/admin.sock mode 660 level admin...
7th May 2026

Install HAProxy on Gentoo Linux

Install HAProxy on Gentoo Linux

Step 1 – Install

emerge --ask net-proxy/haproxy
rc-update add haproxy default && rc-service haproxy start

Step 2 – Basic /etc/haproxy/haproxy.cfg

global
    log /dev/log local0
    chroot /var/lib/haproxy
    stats socket /run/haproxy/admin.sock mode 660 leve...
7th May 2026

Install HAProxy on NetBSD 10

Install HAProxy on NetBSD 10

Step 1 – Install

pkgin install haproxy
echo 'haproxy=YES' >> /etc/rc.conf && service haproxy start

Step 2 – Basic /usr/pkg/etc/haproxy/haproxy.cfg

global
    log /dev/log local0
    chroot /var/lib/haproxy
    stats socket /run/haproxy/admin.sock mode 660 level...
7th May 2026

Install HAProxy on RHEL 9

Install HAProxy on RHEL 9

Step 1 – Install

dnf install -y haproxy
systemctl enable --now haproxy

Step 2 – Basic /etc/haproxy/haproxy.cfg

global
    log /dev/log local0
    chroot /var/lib/haproxy
    stats socket /run/haproxy/admin.sock mode 660 level admin
    user haproxy
    group haprox...
7th May 2026

Install HAProxy on Ubuntu 24.04

Install HAProxy on Ubuntu 24.04

Step 1 – Install

apt update && apt upgrade -y
apt install -y haproxy
systemctl enable --now haproxy

Step 2 – Basic /etc/haproxy/haproxy.cfg

global
    log /dev/log local0
    chroot /var/lib/haproxy
    stats socket /run/haproxy/admin.sock mode 660 level admi...
7th May 2026