Skip to content

Commit

Permalink
keep ipv6 listen separate
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Nemchik <eric@nemchik.com>
  • Loading branch information
nemchik committed Jul 17, 2024
1 parent 875a17d commit f5ce448
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions root/defaults/nginx/site-confs/default.conf.sample
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version 2024/07/14 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/site-confs/default.conf.sample
## Version 2024/07/16 - Changelog: https://github.com/linuxserver/docker-swag/commits/master/root/defaults/nginx/site-confs/default.conf.sample

# redirect all traffic to https
server {
Expand All @@ -12,7 +12,8 @@ server {

# main server block
server {
listen *:443 ssl default_server;
listen 443 ssl default_server;
listen [::]:443 ssl default_server;

server_name _;

Expand Down

0 comments on commit f5ce448

Please sign in to comment.