diff --git a/dn42dummy0-network.j2 b/dn42dummy0-network.j2 index 65d82b7..42f9428 100644 --- a/dn42dummy0-network.j2 +++ b/dn42dummy0-network.j2 @@ -6,10 +6,10 @@ Address=fd32:6b0:70a6:8181::81/128 {% if unicastv6 is defined %} Address={{ unicastv6 }}/128 {% endif %} -Address=fd42:d42:d42:81::1/128 +Address=fd42:d42:d42:81::1/64 Address=172.20.0.81/32 [Route] Destination=fd42:d42:d42:81::/64 -Type=reject +Type=prohibit Metric=16 diff --git a/nginx-site.j2 b/nginx-site.j2 index e0949f1..86d8d25 100644 --- a/nginx-site.j2 +++ b/nginx-site.j2 @@ -1,4 +1,6 @@ server { + listen 172.20.0.81:80; + listen [fd42:d42:d42:81::1]:80; listen [fd32:6b0:70a6:8181::81]:80; {% if unicastv6 is defined %} listen [{{ unicastv6 }}]:80; @@ -6,6 +8,8 @@ server { server_name myip.9pfs.dn42; server_name *.myip.9pfs.dn42; server_name [fd32:6b0:70a6:8181::81]; + server_name 172.20.0.81; + server_name [fd42:d42:d42:81::1]; {% if unicastv6 is defined %} server_name [{{ unicastv6 }}]; {% endif %}