apache - Apache (Ubuntu 14.04) 上的 HTTP/2 不工作

标签 apache ubuntu http2

我试过很多关于如何在 apache 服务器上启用 http2 的教程;例如:

但没有成功。

这是我的配置:

$ apache2 -v
Server version: Apache/2.4.23 (Ubuntu)

$ apachectl -M
Loaded Modules:
...
http2_module (shared)
...
ssl_module (shared)
...

这是我的/etc/apache2/sites-available/default-ssl.conf

<IfModule mod_ssl.c>
    <VirtualHost *:443>

        ServerAdmin info@example.net
        DocumentRoot /var/www/html
        ServerName example.net 
        ServerAlias www.example.net

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:9000/var/www/html/$1

        Protocols h2 http/1.1

        SSLEngine on
        SSLCertificateFile /etc/apache2/ssl/apache.crt
        SSLCertificateKeyFile /etc/apache2/ssl/apache.key

        <FilesMatch "\.(cgi|shtml|phtml|php)$">
                SSLOptions +StdEnvVars
        </FilesMatch>
        <Directory /usr/lib/cgi-bin>
                SSLOptions +StdEnvVars
        </Directory>
        BrowserMatch "MSIE [2-6]" \
                        nokeepalive ssl-unclean-shutdown \
                        downgrade-1.0 force-response-1.0
        BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown

    </VirtualHost>
</IfModule>

当我尝试在 chrome 中加载我的页面 ( https://example.net ) 时,我可以看到这个响应 header :

HTTP/1.1 200 OK
Date: Tue, 09 Aug 2016 12:05:08 GMT
Server: Apache/2.4.23 (Ubuntu)
Upgrade: h2
Connection: Upgrade, Keep-Alive
Last-Modified: Thu, 30 Jun 2016 14:22:30 GMT
ETag: "b18-5367f99a49580-gzip"
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 538
Keep-Alive: timeout=5, max=100
Content-Type: text/html

我错过了什么吗?你能给我一些提示吗?

最佳答案

定义“不起作用”。我看到了升级 header ,所以我觉得不错。

我怀疑 HTTPS 设置有问题。

您使用的是 openssl 1.0.1 并使用 Chrome ( which requires openssl 1.0.2 for ALPN support )。在 Firefox 或 Opera 中检查以确认。

或者 2 您使用的是旧密码 blacklisted under http/2 .添加以下配置以在可能的情况下强制使用合适的 HTTPS 配置:

SSLProtocol all -SSLv2 -SSLv3
SSLHonorCipherOrder on
SSLCipherSuite "EECDH+AES128:EECDH+AES256:+SHA:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:RSA+3DES:!DSS"

关于apache - Apache (Ubuntu 14.04) 上的 HTTP/2 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38850643/

相关文章:

java - 没有方案 :hdfs and Class org. apache.hadoop.DistributedFileSystem 的文件系统未找到

apache - .htaccess 重定向不适用于 Angular 4

Linux from scratch Segmentation fault 报错

ubuntu - Caffe 错误 Ubuntu 16.04 with GPU/usr/bin/ld :/usr/lib/gcc/x86_64-linux-gnu/4. 9/libglog.a

java - 使用 IntelliJ 将 Java lambda 转换为 Kotlin Lambda 生成语法错误

linux - 在 curl 7.33.0 中使用 --http2.0 选项会给出不受支持的协议(protocol)

javascript - 使用 SystemJS 的生产工作流和通过 CDN 托管的外部依赖项

apache - 引用:mod_rewrite,URL重写和“漂亮链接”说明

multithreading - 为什么基于事件的网络应用程序天生比线程网络应用程序快?

git克隆 "does not appear to be a git repository"