HTTP2 push with nginx?
问题 I install nginx 1.13.10 with a wordpress site and openssl on my virtual machine. I'm trying to test http2 push. Here is my nginx conf file: pastebin.com/71ziXeRh server { listen 80 default_server; listen [::]:80 default_server; server_name 192.168.133.21; return 302 https://$server_name$request_uri; } # Load configuration files for the default server block. server { listen 443 ssl http2; server_name 192.168.133.21; include conf.d/self-signed.conf; #ssl config ssl on; location / { root /var