Added ipv6 to the hostfile

Now routes all urls to 0.0.0.0 and ::
stable
Justin Reichardt 2022-02-26 23:42:57 -06:00
parent 006ea0aa11
commit c32bed5041
1 changed files with 4 additions and 0 deletions

View File

@ -438,6 +438,10 @@ func write2tmp(tmpdir string, siteBuff *[]siteList) (err error) {
if err != nil {
return err
}
_, err = tmpf.WriteString(":: " + site.site + "\n")
if err != nil {
return err
}
}
}
}