Allow admin to disallow host-based match (#2506)

This commit is contained in:
Maxime Besson 2021-04-09 17:51:54 +02:00
parent 33dac7bc91
commit a94fb616bd

View File

@ -527,8 +527,10 @@ sub getCasApp {
}
}
# Try to match host
$hostnameConfKey = $app if ( $hostname eq $candidateHost );
# Try to match host, only if strict matching is disabled
unless ( $self->conf->{casStrictMatching} ) {
$hostnameConfKey = $app if ( $hostname eq $candidateHost );
}
}
# Application found by prefix has priority