Skip to content

Latest commit

 

History

History
84 lines (61 loc) · 2.48 KB

File metadata and controls

84 lines (61 loc) · 2.48 KB

N.WTF

Open-source nginx Debian / Ubuntu repository with latest mainline builds.

Features

  • Up-to-date: Latest nginx mainline branch (currently 1.29.4)
  • TLS 1.3 & HTTP/3: Statically built with OpenSSL 3.6.0
  • Extra Modules: Brotli, Zstd, GeoIP2, IPDB, ACME, and more

Quick Install

Debian (via extrepo)

sudo apt update && sudo apt install extrepo -y
sudo extrepo enable n.wtf
sudo apt update && sudo apt install nginx-extras -y

Debian / Ubuntu

One-Line Style:

sudo apt install -y lsb-release ca-certificates apt-transport-https curl gnupg dpkg
curl -sSL https://n.wtf/public.key | sudo bash -c 'gpg --dearmor > /usr/share/keyrings/n.wtf.gpg'
sudo bash -c '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'
sudo apt update
sudo apt install nginx-extras -y

DEB822:

sudo apt install -y lsb-release ca-certificates apt-transport-https curl gnupg dpkg
curl -sSL https://n.wtf/public.key | sudo bash -c 'gpg --dearmor > /usr/share/keyrings/n.wtf.gpg'
sudo bash -c 'cat > /etc/apt/sources.list.d/n.wtf.sources << EOF
Components: main
Architectures: $(dpkg --print-architecture)
Suites: $(lsb_release -cs)
Types: deb
Uris: https://mirror-cdn.xtom.com/sb/nginx/
Signed-By: /usr/share/keyrings/n.wtf.gpg
EOF'
sudo apt update
sudo apt install nginx-extras -y

Docker

docker run --name nginx --net host --restart always \
  -v $HOME/nginx-config:/usr/src/docker-nginx/conf:ro \
  -d ghcr.io/u-sb/nginx

See nginx-docker for Docker Compose setup.

Supported OS

Distribution Versions
Debian 11 (Bullseye), 12 (Bookworm), 13 (Trixie), 14 (Forky)
Ubuntu 22.04 (Jammy), 24.04 (Noble), 25.04 (Plucky), 25.10 (Questing)

Included Modules

Documentation

Visit n.wtf for full documentation.

License

MIT License

NGINX is a trademark of F5 NETWORKS, INC. This project is not affiliated with NGINX Inc. or F5.