Skip to content

Commit 3279f89

Browse files
author
Florian Schaal
committed
fixed nginx-startup errors on systems with net.ipv6.bindv6only=0
1 parent c6f93e0 commit 3279f89

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/tpl/nginx_apps.vhost.master

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
server {
22
listen {apps_vhost_port};
3-
listen [::]:{apps_vhost_port};
3+
listen [::]:{apps_vhost_port} ipv6only=on;
44
ssl {ssl_on};
55
{ssl_comment}ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
66
{ssl_comment}ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;

install/tpl/nginx_ispconfig.vhost.master

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
server {
22
listen {vhost_port};
3-
listen [::]:{vhost_port};
3+
listen [::]:{vhost_port} ipv6only=on;
44
ssl {ssl_on};
55
{ssl_comment}ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
66
{ssl_comment}ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;

0 commit comments

Comments
 (0)