nginx: don't use http2 on port 80 (#39754)

This commit is contained in:
Frédéric Péters 2020-02-11 13:30:57 +01:00
parent 5704704aa5
commit 4dec8ff2ce
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
server {
listen 80 default_server http2;
listen [::]:80 default_server http2;
listen 80 default_server;
listen [::]:80 default_server;
server_name ~.*;
access_log /var/log/nginx/http-to-https-access.log combined_full;