Logo

N.WTF

Open-source nginx Debian / Ubuntu repository

Up-to-date

We release latest mainline branch from nginx official source code.

TLS 1.3

We packed OpenSSL 3.0.x into our nginx as standard.

Modules

Brotli compression, QUIC, HTTP/3, GeoIP2 and more.

# Install required software
apt install -y lsb-release ca-certificates apt-transport-https curl gnupg dpkg
 
# Download PGP Key
curl -sS https://n.wtf/public.key | gpg --dearmor > /usr/share/keyrings/n.wtf.gpg
 
# Add repo
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/n.wtf.gpg] https://mirror-cdn.xtom.com/sb/nginx/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/n.wtf.list
 
# Update system
apt update
 
# Install Latest Nginx
apt install nginx-extras -y