Recommend HTTP/2 in the nginx config (#178)

This commit is contained in:
Nolan Lawson 2017-05-01 07:35:16 -07:00 committed by wxcafé
parent befab7b7c3
commit f0a863feec
1 changed files with 2 additions and 2 deletions

View File

@ -30,8 +30,8 @@ server {
}
server {
listen 443 ssl;
listen [::]:443 ssl;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name example.com;
ssl_protocols TLSv1.2;