Skip to content

Commit 2a07aae

Browse files
include explanation that new options are optional
1 parent 6535ef1 commit 2a07aae

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

config.dist.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,25 @@
3030

3131
// Enter a URL to use to determine the public IPv4 address. It must
3232
// only return an IPv4 address in plain text, otherwise the script will fail.
33+
// [Optional; will be set to default value 'https://api.ipify.org' if missing.]
3334
define('IPV4_ADDRESS_URL', 'https://api.ipify.org');
3435

3536
// Enter a URL to use as fallback to determine the public IPv4
3637
// address. It must only return an IPv4 address in plain text, otherwise the
3738
// script will fail.
39+
// [Optional; will be set to default value 'https://ipv4.seeip.org' if missing.]
3840
define('IPV4_ADDRESS_URL_FALLBACK', 'https://ipv4.seeip.org');
3941

4042
// Enter a URL to use to determine the public IPv6 address. It must
4143
// only return an IPv6 address in plain text, otherwise the script will fail.
44+
// [Optional; will be set to default value 'https://ipv6.seeip.org' if missing.]
4245
define('IPV6_ADDRESS_URL', 'https://ipv6.seeip.org');
4346

4447
// Enter a URL to use as fallback to determine the public IPv6
4548
// address. It must only return an IPv6 address in plain text, otherwise the
4649
// script will fail.
47-
define('IPV6_ADDRESS_URL_FALLBACK', 'https://v6.ident.me/');
50+
// [Optional; will be set to default value 'https://v6.ident.me' if missing.]
51+
define('IPV6_ADDRESS_URL_FALLBACK', 'https://v6.ident.me');
4852

4953

5054
// If set to true, the script will check for your public IPv4 address and add it as an A-Record / change an existing A-Record for the host.

0 commit comments

Comments
 (0)