Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DB9FA18221 for ; Fri, 18 Mar 2016 23:02:09 +0000 (UTC) Received: (qmail 66692 invoked by uid 500); 18 Mar 2016 23:02:09 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 66629 invoked by uid 500); 18 Mar 2016 23:02:09 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 66620 invoked by uid 99); 18 Mar 2016 23:02:09 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2016 23:02:09 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 2FCC9C2439 for ; Fri, 18 Mar 2016 23:02:09 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.999 X-Spam-Level: X-Spam-Status: No, score=0.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-0.001] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id nqqQRWKsII2f for ; Fri, 18 Mar 2016 23:02:08 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with ESMTP id 93F3A5F1F0 for ; Fri, 18 Mar 2016 23:02:07 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 872EAE0113 for ; Fri, 18 Mar 2016 23:02:06 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 876A53A0056 for ; Fri, 18 Mar 2016 23:02:06 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1735702 - /httpd/httpd/trunk/docs/manual/howto/http2.html.en Date: Fri, 18 Mar 2016 23:02:06 -0000 To: cvs@httpd.apache.org From: elukey@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160318230206.876A53A0056@svn01-us-west.apache.org> Author: elukey Date: Fri Mar 18 23:02:06 2016 New Revision: 1735702 URL: http://svn.apache.org/viewvc?rev=1735702&view=rev Log: Documentation rebuild Modified: httpd/httpd/trunk/docs/manual/howto/http2.html.en Modified: httpd/httpd/trunk/docs/manual/howto/http2.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/http2.html.en?rev=1735702&r1=1735701&r2=1735702&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/http2.html.en (original) +++ httpd/httpd/trunk/docs/manual/howto/http2.html.en Fri Mar 18 23:02:06 2016 @@ -174,13 +174,25 @@

Useful tools to debug HTTP/2

-

curl.

-

And for really deep inspection wireshark.

-

The nghttp2 package also includes clients, such as - nghttp and h2load, the latter one being very useful in putting - some stress on your server.

-

Chrome offers also detailed HTTP/2 logs on its connections via the - special net-internals page.

+

The first tool to mention is of course curl. Please make sure that + your version supports HTTP/2 checking its Features:

+
    $ curl -V
+    curl 7.45.0 (x86_64-apple-darwin15.0.0) libcurl/7.45.0 OpenSSL/1.0.2d zlib/1.2.8 nghttp2/1.3.4
+    Protocols: dict file ftp ftps gopher http https imap imaps ldap ldaps pop3 [...] 
+    Features: IPv6 Largefile NTLM NTLM_WB SSL libz TLS-SRP HTTP2
+    
+ +

Mac OS homebrew notes

+ brew install curl --with-openssl --with-nghttp2 +
+

And for really deep inspection wireshark.

+

The nghttp2 package also includes clients, such as:

+
    +
  • nghttp - useful to visualize the HTTP/2 frames and get a better idea of the protocol.
  • +
  • h2load - useful to stress-test your server.
  • +
+

Chrome offers detailed HTTP/2 logs on its connections via the + special net-internals page. There is also an interesting extension for Chrome and Firefox to visualize when your browser is using HTTP/2.

top