Skip to content

Commit

Permalink
Fix HTTPS connections via IPv6
Browse files Browse the repository at this point in the history
  • Loading branch information
dkobras committed May 4, 2020
1 parent b864ea5 commit 68ad048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/bbb-ssl.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ server {
listen [::]:80;
server_name {{ bbb_server_name }};
listen 443 ssl;
listen [::]:443;
listen [::]:443 ssl;
ssl_certificate /etc/letsencrypt/live/{{ bbb_server_name }}/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/{{ bbb_server_name }}/privkey.pem;
ssl_session_cache shared:SSL:10m;
Expand Down

0 comments on commit 68ad048

Please sign in to comment.