Skip to content

Commit

Permalink
fix(#8582): fixes http2 declaration warning (#8661)
Browse files Browse the repository at this point in the history
* fix http2 declaration per #8582

* remove http2 from port 80
  • Loading branch information
mrjones-plip committed Oct 24, 2023
1 parent f86dd44 commit 242d184
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ http {
}

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
http2 on;

gzip on;
gzip_vary on;
Expand Down

0 comments on commit 242d184

Please sign in to comment.