Fixes an issue with captive portal handler

DNSMASQ was sending requests to the captive portal URL interface,
but the PHP script was not allowed to be executed.
This commit is contained in:
Matthias Strubel 2019-06-05 22:58:54 +02:00
parent 553ade13fc
commit 0b16765803
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ $HTTP["url"] =~ "^/connecttest.txt" {
server.error-handler-404 = "/captive/ia_handler.php"
}
$HTTP["url"] =~ "^/captive/ia_handler.php$" {
$HTTP["url"] =~ "^/captive/" {
fastcgi.server = (
"" => ((
"bin-path" => "/usr/bin/php-cgi",