
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 and GeoIP2.
As Easy as 1, 2, 3
# 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
docker run --name nginx --net host --restart always -v $HOME/nginx-config:/usr/src/docker-nginx/conf:ro -d ghcr.io/u-sb/nginx
# Clone our repo
git clone https://github.com/u-sb/nginx-docker
# Change directory to nginx-docker folder
cd nginx-docker
# Run docker-compose
docker-compose pull
docker-compose up -d