From f0a863feecd4b13852058d2b85995838948955e1 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Mon, 1 May 2017 07:35:16 -0700 Subject: [PATCH] Recommend HTTP/2 in the nginx config (#178) --- 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 9c86d23b..95d604cc 100644 --- a/Running-Mastodon/Production-guide.md +++ b/Running-Mastodon/Production-guide.md @@ -30,8 +30,8 @@ server { } server { - listen 443 ssl; - listen [::]:443 ssl; + listen 443 ssl http2; + listen [::]:443 ssl http2; server_name example.com; ssl_protocols TLSv1.2;