Make what SSL trust does clearer

This commit is contained in:
Jamie Cameron
2025-02-13 12:49:12 -08:00
parent 4f831d9390
commit 9988589e9e
2 changed files with 4 additions and 1 deletions

View File

@@ -31,7 +31,9 @@ print &ui_table_row(&hlink($text{'access_trust'}, "access_trust"),
&ui_yesno_radio("trust", int($miniserv{'trust_real_ip'})));
print &ui_table_row(&hlink($text{'access_trust_ssl'}, "access_trust_ssl"),
&ui_yesno_radio("trust_ssl", !$miniserv{'no_trust_ssl'}));
&ui_radio("trust_ssl", $miniserv{'no_trust_ssl'} ? 1 : 0,
[ [ 0, $text{'access_trust_ssl_yes'} ],
[ 1, $text{'no'} ] ]));
eval "use Authen::Libwrap qw(hosts_ctl STRING_UNKNOWN)";
if (!$@) {

View File

@@ -33,6 +33,7 @@ access_eself=Your current IP address ($1) would be denied
access_always=Resolve hostnames on every request?
access_trust=Trust remote IP address provided by proxies?
access_trust_ssl=Trust SSL client cert provided by proxies?
access_trust_ssl_yes=Yes (when remote IP is trusted)
bind_title=Ports and Addresses
bind_desc2=This form can be used to change the port number that Webmin listens on, or have it listen on only a single IP address on your system. You can also configure it to accept connections on multiple ports, or to listen on several IP addresses. Note - your web browser may prompt you to log in again after changing the port or binding address.