Skip to content

Instantly share code, notes, and snippets.

@ericandrewlewis
Created July 29, 2015 15:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericandrewlewis/c973a4213dc809241689 to your computer and use it in GitHub Desktop.
Save ericandrewlewis/c973a4213dc809241689 to your computer and use it in GitHub Desktop.
How I'm installing Varnish
apt-get update;
apt-get install -y curl;
curl -o /tmp/varnish-4.0.3.tar.gz http://repo.varnish-cache.org/source/varnish-4.0.3.tar.gz;
tar -zxvf /tmp/varnish-4.0.3.tar.gz -C /usr/local/src/;
apt-get build-dep varnish;
cd /usr/local/src/varnish-4.0.3/;
sh autogen.sh;
sh configure;
make;
make install;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment