bind firegex also on ipv6 by default

This commit is contained in:
Domingo Dirutigliano
2025-09-29 13:15:09 +02:00
parent 402be8c021
commit aeb97062e2
2 changed files with 4 additions and 2 deletions

3
run.py
View File

@@ -95,7 +95,8 @@ def load_config():
import json
default_config = {
"port": 4444,
"host": "0.0.0.0"
# any allow to bind service also on ipv6 (see the main of backend to understand why)
"host": "any"
}
if os.path.isfile(g.configfile):