4

The source is at https://github.com/varnish/varnish-modules but I couldn't build it.

Ideally I'd want something installable through a ppa. The closest I could get was https://launchpad.net/~lasse-karstensen/+archive/ubuntu/varnish-modules but this is old and doesn't have support for 20 (only for 18).

I'd also be OK to install it from a .deb or .rpm file if one exists and is possible.

cherouvim
  • 215

1 Answers1

0

You can install latest available varnish modules deb package (Built on 22-07-2020) by executing below commands in terminal.

wget -c 'http://archive.ubuntu.com/ubuntu/pool/universe/v/varnish-modules/varnish-modules_0.16.0-2_amd64.deb'

sudo dpkg -i varnish-modules_0.16.0-2_amd64.deb

Fix missing dependencies.

sudo apt install -f 

In case it future it new version is available, you can find latest package by vising link here.

KK Patel
  • 19,753