Skip to content

Commit eff5c13

Browse files
author
Marius Burkard
committed
- added ipv6 listen to ispconfig vhost files on nginx (Fixes #3665)
1 parent 76ec4ae commit eff5c13

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

install/tpl/nginx_apps.vhost.master

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
server {
2-
listen {apps_vhost_ip}{apps_vhost_port};
2+
listen {apps_vhost_ip};
3+
listen [::]:{apps_vhost_port};
34
ssl {ssl_on};
45
{ssl_comment}ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
56
{ssl_comment}ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;

install/tpl/nginx_ispconfig.vhost.master

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
server {
22
listen {vhost_port};
3+
listen [::]:{vhost_port}
34
ssl {ssl_on};
45
{ssl_comment}ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
56
{ssl_comment}ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;

0 commit comments

Comments
 (0)