From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57122) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpGwN-0001xe-9E for guix-patches@gnu.org; Tue, 05 Sep 2017 12:43:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dpGwI-0001JZ-OJ for guix-patches@gnu.org; Tue, 05 Sep 2017 12:43:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43004) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dpGwI-0001JQ-Lk for guix-patches@gnu.org; Tue, 05 Sep 2017 12:43:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dpGwI-0000HG-Ba for guix-patches@gnu.org; Tue, 05 Sep 2017 12:43:02 -0400 Subject: [bug#28360] [PATCH] gnu: nginx: Enable HTTP/2.0 (ngx_http_v2_module). Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56452) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpGvV-0001Pa-7v for guix-patches@gnu.org; Tue, 05 Sep 2017 12:42:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dpGvQ-0000kZ-KT for guix-patches@gnu.org; Tue, 05 Sep 2017 12:42:13 -0400 Received: from tobias.gr ([2001:470:cc92::1]:38076) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dpGvQ-0000jf-A5 for guix-patches@gnu.org; Tue, 05 Sep 2017 12:42:08 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id a91f9e45 for ; Tue, 5 Sep 2017 16:42:05 +0000 (UTC) Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 53183cdc (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO) for ; Tue, 5 Sep 2017 16:42:03 +0000 (UTC) From: Tobias Geerinckx-Rice Date: Tue, 5 Sep 2017 18:43:47 +0200 Message-Id: <20170905164347.8209-1-me@tobias.gr> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28360@debbugs.gnu.org * gnu/packages/web.scm (nginx)[arguments]: Add ‘--with-http_v2_module’ flag. --- Guix, The following adds v2 listener support to our nginx package. The majority of legitimate web traffic to my boxes is already over HTTP/2.0 (Guix itself being the lone exception). The protocol won't be spoken by default until upstream decides to do so; I just got tired of maintaining this huge patch locally. Kind regards, T G-R gnu/packages/web.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index ac65a8536..377e366e2 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -162,6 +162,7 @@ and its related documentation.") (let ((flags (list (string-append "--prefix=" (assoc-ref outputs "out")) "--with-http_ssl_module" + "--with-http_v2_module" "--with-pcre-jit" "--with-debug" ;; Even when not cross-building, we pass the -- 2.13.1