Update nginx on EE

Hello, how to add this repo in Debian 8?

https://download.opensuse.org/repositories/home:/rtCamp:/EasyEngine/Debian_8.0/

I want to install nginx with ALPN support

Hello,

do you use EasyEngine or you just want to install nginx with ALPN support ?

with EasyEngine, you just have to use the command :

ee stack install --nginx

But I recommand you to switch to Ubuntu 18.04 LTS because Debian 8 Jessie will not receive updates after the end of June anymore.

I just want to install nginx with ALPN support.

Why you recommend Ubuntu 18.04? Not 16.04?

Because Ubuntu 18.04 LTS is the current stable release, supported until 2023.

To install the latest nginx release, you can use nginx.org repositories :

wget -O - https://nginx.org/keys/nginx_signing.key | apt-key add -
echo "deb http://nginx.org/packages/debian/ $(lsb_release -sc) nginx" > /etc/apt/sources.list.d/nginx.list
apt update
apt install nginx