Skip to content
This repository has been archived by the owner on Nov 16, 2020. It is now read-only.

Commit

Permalink
Merge pull request #22 from wiz/remove-http2-from-nginx-conf
Browse files Browse the repository at this point in the history
Remove http2 from nginx.conf since it breaks certbot functionality
  • Loading branch information
sqrrm authored Jan 5, 2020
2 parents d706e3b + a4867f1 commit 28107cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ http {
gzip_types application/javascript application/json application/ld+json application/manifest+json application/rss+xml application/vnd.geo+json application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/bmp image/svg+xml image/x-icon text/cache-manifest text/css text/plain text/vcard text/vnd.rim.location.xloc text/vtt text/x-component text/x-cross-domain-policy; # text/html is always compressed by gzip module

server {
listen 80 http2 default_server;
listen [::]:80 http2 ipv6only=on;
listen 80 default_server;
listen [::]:80 ipv6only=on;
server_name _;

index index.html;
Expand Down

0 comments on commit 28107cf

Please sign in to comment.