Skip to content

Commit

Permalink
Update Nginx config according to deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Nmishin committed Oct 5, 2024
1 parent 233b27a commit 047bbdb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/app/files/nginx/templates/https/default.conf.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ server {
}

server {
listen 443 default_server ssl http2;
listen [::]:443 ssl http2;
listen 443 default_server ssl;
listen [::]:443 ssl;
http2 on;
server_name ${DOMAIN};

Expand Down

0 comments on commit 047bbdb

Please sign in to comment.