Revert old default values

This commit is contained in:
Cohee
2025-02-04 22:46:24 +02:00
parent 363d8a4121
commit d9bb5e6b1f
2 changed files with 4 additions and 4 deletions

View File

@@ -10,8 +10,8 @@ listen: false
# - Use option "auto" to automatically detect support
# - Use true or false (no qoutes) to enable or disable each protocol
protocol:
ipv4: auto
ipv6: auto
ipv4: true
ipv6: false
# Prefers IPv6 for DNS. Enable this on ISPs that don't have issues with IPv6
dnsPreferIPv6: false
# The hostname that autorun opens.

View File

@@ -137,8 +137,8 @@ const DEFAULT_CSRF_DISABLED = false;
const DEFAULT_BASIC_AUTH = false;
const DEFAULT_PER_USER_BASIC_AUTH = false;
const DEFAULT_ENABLE_IPV6 = 'auto';
const DEFAULT_ENABLE_IPV4 = 'auto';
const DEFAULT_ENABLE_IPV6 = false;
const DEFAULT_ENABLE_IPV4 = true;
const DEFAULT_PREFER_IPV6 = false;