mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.prosodyctl.check: Hint about the 'external_addresses' config option
This commit is contained in:
parent
43c39930c3
commit
683b90f871
1 changed files with 5 additions and 0 deletions
|
@ -828,6 +828,8 @@ local function check(arg)
|
||||||
if external_addresses:empty() then
|
if external_addresses:empty() then
|
||||||
print("");
|
print("");
|
||||||
print(" Failed to determine the external addresses of this server. Checks may be inaccurate.");
|
print(" Failed to determine the external addresses of this server. Checks may be inaccurate.");
|
||||||
|
print(" If you know the correct external addresses you can specify them in the config like:")
|
||||||
|
print(" external_addresses = { \"192.0.2.34\", \"2001:db8::abcd:1234\" }")
|
||||||
c2s_srv_required, s2s_srv_required = true, true;
|
c2s_srv_required, s2s_srv_required = true, true;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1103,6 +1105,9 @@ local function check(arg)
|
||||||
print("");
|
print("");
|
||||||
print(" Internal: "..tostring(internal_addresses));
|
print(" Internal: "..tostring(internal_addresses));
|
||||||
print(" External: "..tostring(external_addresses));
|
print(" External: "..tostring(external_addresses));
|
||||||
|
print("")
|
||||||
|
print("If the list of external external addresses is incorrect you can specify correct addresses in the config:")
|
||||||
|
print(" external_addresses = { \"192.0.2.34\", \"2001:db8::abcd:1234\" }")
|
||||||
end
|
end
|
||||||
print("");
|
print("");
|
||||||
print("For more information about DNS configuration please see https://prosody.im/doc/dns");
|
print("For more information about DNS configuration please see https://prosody.im/doc/dns");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue