Skip to content

Commit

Permalink
silence warning about http2 directive (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
intentionally-left-nil authored Mar 19, 2024
1 parent 940ba88 commit 02ecaa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ bootstrap_fn() {
cat << EOF >> "$data_dir/nginx_generated.conf"
server {
server_name $server_name;
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
ssl_certificate $cert_dir/$domain/fullchain.pem;
ssl_certificate_key $cert_dir/$domain/key.pem;
Expand Down

0 comments on commit 02ecaa6

Please sign in to comment.