Default listen.host to IPv6 addresses (#204)

This commit is contained in:
John Maguire 2024-12-10 15:11:42 -05:00 committed by GitHub
parent c0b856e611
commit a12ff140a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ func newConfig() *config {
Hosts: []string{},
},
Listen: configListen{
Host: "0.0.0.0",
Host: "[::]",
Port: 4242,
Batch: 64,
},