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

Remove http2 from nginx.conf since it breaks certbot functionality #22

Merged
merged 1 commit into from
Jan 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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