removed the hard coded 'suffix '/server-status?auto' from the 'lighttpd' module. Now it must be part of the

URL(s) defined in the 'list' option
This commit is contained in:
Jordi Sanfeliu 2014-02-10 11:30:48 +01:00
parent 00676e5ba7
commit 5ef5f6a2ae
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ sub lighttpd_update {
my $n = 0;
foreach(my @ll = split(',', $lighttpd->{list})) {
my $url = trim($_) . "/server-status?auto";
my $url = trim($_);
my $ua = LWP::UserAgent->new(timeout => 30);
$ua->ssl_opts(verify_hostname => 0)