[メモ]H2OでHTTP/2を使ってみる
前提
H2Oインストール済みであること
http://qiita.com/igara/items/1b7cd8e714844440795d
opensslをインストール済みであること
オレオレ認証書を作成する
$ openssl genrsa 2048 > server.key
$ openssl req -new -key server.key > server.csr
$ openssl x509 -days 3650 -req -signkey server.key < server.csr > server.crt
設定はお好きに
H2Oのコンフィグを作成
http通信用に作成
hosts:
"example.com":
listen:
port: 8000
paths:
/:
file.dir: /home/vagrant/web/slack_rack_php/public
redirect:
url: /index.php/
internal: YES
status: 307
file.custom-handler:
extension: .php
fastcgi.connect:
host: 127.0.0.1
port: 9000
type: tcp
access-log: /home/vagrant/access-log
error-log: /home/vagrant/error-log
pid-file: /home/vagrant/pid-file
リバースプロキシとSSLの設定されたコンフィグ
listen:
port: 8080
ssl:
certificate-file: /home/vagrant/server.crt
key-file: /home/vagrant/server.key
hosts:
default:
paths:
/:
proxy.reverse.url: http://127.0.0.1:8000/
access-log: /home/vagrant/accessre-log
error-log: /home/vagrant/errorre-log
pid-file: /home/vagrant/pidre-file
H2Oの起動
sudo h2o -m daemon -c h2o.conf
sudo h2o -m daemon -c proxy.conf
HTTP/1とHTTP/2の比較
画像をいっぱい読み込むページを作成してみてちょっと比較を行ってみた。
こんなの
Chromeのプラグインで「HTTP/2 and SPDY indicator」もしくは
firefoxだと「SPDY indicator」というのを入れると
URLの隣に青いイナズマが表示され、
HTTP/2を用いられているサイトだとわかる。
HTTP/1
HTTP/2
HTTP/2は並列的に画像のダウンロードされているんですね。
Author And Source
この問題について([メモ]H2OでHTTP/2を使ってみる), 我々は、より多くの情報をここで見つけました https://qiita.com/igara/items/b3f0c8af1eda9866101c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .