Revert old default values

d9bb5e6b1ff17bccd8e3145a91f6c0e10a0267a7

Cohee <18619528+Cohee1207@users.noreply.github.com>

2 files changed, +4 -4Showing whitespace changes
default/config.yaml+2 -2
@@ -10,8 +10,8 @@ listen: false
10# - Use option "auto" to automatically detect support10# - Use option "auto" to automatically detect support
11# - Use true or false (no qoutes) to enable or disable each protocol11# - Use true or false (no qoutes) to enable or disable each protocol
12protocol:12protocol:
13 ipv4: auto13 ipv4: true
14 ipv6: auto14 ipv6: false
15# Prefers IPv6 for DNS. Enable this on ISPs that don't have issues with IPv615# Prefers IPv6 for DNS. Enable this on ISPs that don't have issues with IPv6
16dnsPreferIPv6: false16dnsPreferIPv6: false
17# The hostname that autorun opens.17# The hostname that autorun opens.
server.js+2 -2
@@ -137,8 +137,8 @@ const DEFAULT_CSRF_DISABLED = false;
137const DEFAULT_BASIC_AUTH = false;137const DEFAULT_BASIC_AUTH = false;
138const DEFAULT_PER_USER_BASIC_AUTH = false;138const DEFAULT_PER_USER_BASIC_AUTH = false;
139139
140const DEFAULT_ENABLE_IPV6 = 'auto';140const DEFAULT_ENABLE_IPV6 = false;
141const DEFAULT_ENABLE_IPV4 = 'auto';141const DEFAULT_ENABLE_IPV4 = true;
142142
143const DEFAULT_PREFER_IPV6 = false;143const DEFAULT_PREFER_IPV6 = false;
144144