Estou tentando colocar o http2 no meu servidor nginx, e estou confuso sobre algumas coisas. Eu olhei por aqui e pela web, mas não encontrei exatamente o que estou procurando, ou ele foi respondido usando informações desatualizadas de quando ainda não foi "lançado".
Eu tenho o servidor nginx em funcionamento, usando vhosts. Tem o módulo http_v2
me@server:/etc/nginx$ sudo nginx -V | grep http2
nginx version: nginx/1.10.3
built with OpenSSL 1.1.0f 25 May 2017
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fdebug-prefix-map=/build/nginx-2tpxfc/nginx-1.10.3=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-z,relro -Wl,-z,now' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --modules-path=/usr/lib/nginx/modules --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_v2_module --with-http_dav_module --with-http_slice_module --with-threads --with-http_addition_module --with-http_geoip_module=dynamic --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module=dynamic --with-http_sub_module --with-http_xslt_module=dynamic --with-stream=dynamic --with-stream_ssl_module --with-mail=dynamic --with-mail_ssl_module --add-dynamic-module=/build/nginx-2tpxfc/nginx-1.10.3/debian/modules/nginx-auth-pam --add-dynamic-module=/build/nginx-2tpxfc/nginx-1.10.3/debian/modules/nginx-dav-ext-module --add-dynamic-module=/build/nginx-2tpxfc/nginx-1.10.3/debian/modules/nginx-echo --add-dynamic-module=/build/nginx-2tpxfc/nginx-1.10.3/debian/modules/nginx-upstream-fair --add-dynamic-module=/build/nginx-2tpxfc/nginx-1.10.3/debian/modules/ngx_http_substitutions_filter_module
(não sabe como realçar o "--with-http_v2_module" em um codeblock)
Um dos meus vhosts tem um ssl funcionando (usando o letsencrypt).
server {
listen 80;
server_name example.com;
return 301 http://www.example.com$request_uri;
}
server {
server_name www.example.com;
access_log /log/example.com/access.log;
error_log /log/example.com/error.log;
root /www/www.example.com/public;
client_max_body_size 100M;
index index.php;
location / {
# my location config there ...
}
listen 80; # managed by Certbot
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/www.example.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem; # managed by Certbot
ssl_session_cache shared:le_nginx_SSL:1m; # managed by Certbot
ssl_session_timeout 1440m; # managed by Certbot
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # managed by Certbot
ssl_prefer_server_ciphers on; # managed by Certbot
ssl_ciphers "ECDHE-ECDSA-AES128-GCM-SHA256 ECDHE-ECDSA-AES256-GCM-SHA384 ECDHE-ECDSA-AES128-SHA ECDHE-ECDSA-AES256-SHA ECDHE-ECDSA-AES128-SHA256 ECDHE-ECDSA-AES256-SHA384 ECDHE-RSA-AES128-GCM-SHA256 ECDHE-RSA-AES256-GCM-SHA384 ECDHE-RSA-AES128-SHA ECDHE-RSA-AES128-SHA256 ECDHE-RSA-AES256-SHA384 DHE-RSA-AES128-GCM-SHA256 DHE-RSA-AES256-GCM-SHA384 DHE-RSA-AES128-SHA DHE-RSA-AES256-SHA DHE-RSA-AES128-SHA256 DHE-RSA-AES256-SHA256 EDH-RSA-DES-CBC3-SHA"; # managed by Certbot
ssl_dhparam /etc/ssl/certs/dhparam.pem;
}
Gostaria que o http2 fosse ativado para isso.
Todo documento que vi diz que eu só preciso adicionar "http2" depois de "ssl": listen 443 ssl;
, e se eu fizer isso, o nginx será reiniciado sem erros.
Eu queria testar se estava funcionando e não consegui encontrar o protocolo no console da rede chrome. Então eu encontrei o link , que dizia que funcionava.
Então, minhas perguntas:
1 - Como posso ver no chrome (se possível, outro se não) se uma conexão é feita via http2?
2 - Ainda preciso adicionar a diretiva "http2" para ativá-la no meu vhost após o ssl? Portanto, não preciso adicioná-lo à minha linha não-ssl / listen na porta 80, já que esse caso será tratado automaticamente entre o navegador e o servidor durante a solicitação, certo?
Eu não tenho nenhum erro ou qualquer coisa, eu só quero saber como verificar se ele usa http2 quando pode e as coisas funcionam como deveriam ...
Obrigado.