From e97ec8f8ffe2b1b33c832f8517b9b4e8603d9f29 Mon Sep 17 00:00:00 2001 From: Isao Sugimoto Date: Wed, 10 May 2017 01:10:10 +0900 Subject: [PATCH] more better instructions of debian jessie-backports (#232) * more better instructions of debian jessie-backports * minor fix --- Running-Mastodon/Production-guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Running-Mastodon/Production-guide.md b/Running-Mastodon/Production-guide.md index 884db27c..9aee5cfe 100644 --- a/Running-Mastodon/Production-guide.md +++ b/Running-Mastodon/Production-guide.md @@ -191,10 +191,10 @@ and install an ident daemon, which does not come installed by default: ### Debian 8 -Under Debian 8, the default version of nginx available is too old to work with the above configuration file (as it uses http2). To install a newer version of nginx that supports http2 (v1.9.5+), you have to add the jessie-backports repo to your `sources.list`: +Under Debian 8, the default version of nginx available is too old to work with the above configuration file (as it uses http2). To install a newer version of nginx that supports http2 (v1.9.5+), you have to add the jessie-backports repo to your `sources.list.d`: ```bash -$ echo "deb http://ftp.debian.org/debian jessie-backports main" | sudo tee -a /etc/apt/sources.list +$ echo "deb http://ftp.debian.org/debian/ jessie-backports main" | sudo tee /etc/apt/sources.list.d/backports.list $ sudo apt-get update $ sudo apt-get install -t jessie-backports nginx ```