我正在为我的本地开发服务器使用Ansible Playbook。我刚刚添加了HTTP / 2支持,现在,一些资源处于挂起状态:
打开像info.php
之类的东西就可以了。
我正在使用Apache 2.4.23,mod_http2和此配置:
<VirtualHost *:443>
ServerAdmin webmaster@localhost
DocumentRoot {{ apache.docroot }}
ServerName {{ apache.servername }}
Protocols h2 http/1.1
SSLEngine on
SSLCertificateKeyFile /etc/apache2/ssl/sxs.dev.key
SSLCertificateFile /etc/apache2/ssl/sxs.dev.cert
<Directory {{ apache.docroot }}>
AllowOverride All
Options -Indexes +FollowSymLinks
Require all granted
</Directory>
</VirtualHost>
我缩小了我的app.js
,现在它可以了。是否存在类似文件限制的内容? Chrome表示&#34;请求未完成是&#34;使用未经授权的版本时。