HTTP/2 サポートを設定しようとしていますが、問題が発生しています
私のサーバーは、OpenSSL を使用して SSL 証明書が構成された Debian 9.13 (stretch) サーバー バージョン Apache/2.4.25 を実行する Google Compute Engine VM です。実行すると、openssl version
バージョン 1.1.1g が報告されます。実行すると、 PHP バージョン 7.4.11phpinfo();
が報告され 、さらに次のように報告されます...OpenSSL/1.0.2u
phpinfo();
SSL_VERSION_INTERFACE -> mod_ssl/2.4.25
SSL_VERSION_LIBRARY -> OpenSSL/1.0.2u
SSL_PROTOCOL -> TLSv1.2
私は指示に従いましたここ「ApacheでHTTP/2モジュールを有効にする」と「Apache仮想ホストでHTTP/2を有効にする」、そしてここその後、コマンドを実行すると、 HTTP/2 サポートが有効になっていることを示すapache2ctl -M | grep http2
シグナルが返されますhttp2_module (shared)
。ただし、これは本番環境では使用されていません。
これは私のapache2仮想ホスト設定ファイルで使用されている行です/etc/apache2/sites-available/default-ssl.conf
<VirtualHost _default_:443>
Protocols h2 h2c http/1.1
...
curl -vso http2_debug.log --http2 https://pharealty.com/
以下は、ページを正常にダウンロードするコマンドを使用した場合の詳細な接続情報です。
* Trying 35.236.101.224...
* TCP_NODELAY set
* Connected to pharealty.com (35.236.101.224) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
* CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: /etc/ssl/certs
* TLSv1.2 (OUT), TLS header, Certificate Status (22):
} [5 bytes data]
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
} [512 bytes data]
* TLSv1.2 (IN), TLS handshake, Server hello (2):
{ [109 bytes data]
* TLSv1.2 (IN), TLS handshake, Certificate (11):
{ [4036 bytes data]
* TLSv1.2 (IN), TLS handshake, Server key exchange (12):
{ [333 bytes data]
* TLSv1.2 (IN), TLS handshake, Server finished (14):
{ [4 bytes data]
* TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
} [70 bytes data]
* TLSv1.2 (OUT), TLS change cipher, Client hello (1):
} [1 bytes data]
* TLSv1.2 (OUT), TLS handshake, Finished (20):
} [16 bytes data]
* TLSv1.2 (IN), TLS change cipher, Client hello (1):
{ [1 bytes data]
* TLSv1.2 (IN), TLS handshake, Finished (20):
{ [16 bytes data]
* SSL connection using TLSv1.2 / ECDHE-RSA-AES256-GCM-SHA384
* ALPN, server accepted to use http/1.1
* Server certificate:
* subject: CN=pharealty.com
* start date: Jul 10 01:53:04 2021 GMT
* expire date: Oct 8 01:53:03 2021 GMT
* subjectAltName: host "pharealty.com" matched cert's "pharealty.com"
* issuer: C=US; O=Let's Encrypt; CN=R3
* SSL certificate verify ok.
} [5 bytes data]
> GET / HTTP/1.1
> Host: pharealty.com
> User-Agent: curl/7.52.1
> Accept: */*
>
{ [5 bytes data]
< HTTP/1.1 200 OK
< Date: Wed, 08 Sep 2021 17:20:21 GMT
< Server: Apache
< Upgrade: h2,h2c
< Connection: Upgrade
< Set-Cookie: PHPSESSID=1mv9jqka4n7c7fb6qmtavfsgue; path=/
< Expires: Thu, 19 Nov 1981 08:52:00 GMT
< Cache-Control: no-store, no-cache, must-revalidate
< Pragma: no-cache
< X-Pingback: https://pharealty.com/xmlrpc.php
< Link: <https://pharealty.com/wp-json/>; rel="https://api.w.org/"
< Link: <https://pharealty.com/wp-json/wp/v2/pages/48>; rel="alternate"; type="application/json"
< Link: <https://pharealty.com/>; rel=shortlink
< Set-Cookie: phaLandingPage=%2F; expires=Tue, 08-Mar-2022 17:20:21 GMT; Max-Age=15638400; path=/
< Vary: Accept-Encoding
< Transfer-Encoding: chunked
< Content-Type: text/html; charset=UTF-8
<
{ [7 bytes data]
* Curl_http_done: called premature == 0
* Connection #0 to host pharealty.com left intact
最初は完璧に動作しているように見えますが、その後HTTP/1.1に戻ります。
私の知る限り、OpenSSLの最新バージョンを入手しました。前に言及したこのページApache のバージョン 2.4.25 以降を強く推奨します。Apache を 2.4.25 以外に更新することができませんでした。
切り替え後に新しい SSL 証明書を設定する必要がありますか? Apache のバージョンが問題の原因ですか?
いくつかの http/2 テスト Web サイトでサイトをテストしましたが、毎回失敗します。
答え1
サポートされているOSにアップグレードする
Debian Stretch を使用しましたが、メインサポートは既に EOL (サポート終了) になっていると思います。
セキュリティパッチは、2022-06-30。
Apache処理モジュールを変更する
sudo a2dismod mpm_prefork
sudo a2enmod mpm_event
SSLとhttp2モジュールを有効にする
sudo a2enmod ssl
sudo a2enmod http2
グローバルまたはvhost経由でhttp2サポートを有効にする
Apache2.conf に追加:
Protocols h2 http/1.1
またはvhostを編集して追加します プロトコル h2 http/1.1
<VirtualHost *:443>
ServerName example.com
ServerAlias www.example.com
DocumentRoot /var/www/public_html/example.com
SSLEngine on
SSLCertificateKeyFile /path/to/private.pem
SSLCertificateFile /path/to/cert.pem
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
Protocols h2 http/1.1 #add this here
</VirtualHost>
Apache サーバーをリロードするように通知します。
sudo systemctl restart apache2
すべてのPHPバージョンを取得するには、私のbashスクリプトを参照してください。
https://raw.githubusercontent.com/djdomi/php-install/master/run.sh
参照
に関してこのガイド