summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/etc/inc/system.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etc/inc/system.inc b/src/etc/inc/system.inc
index 1628387..d1a0dd0 100644
--- a/src/etc/inc/system.inc
+++ b/src/etc/inc/system.inc
@@ -1177,14 +1177,14 @@ function system_generate_nginx_config($filename,
foreach ($cp_interfaces as $cpint) {
$cpint_ip = get_interface_ip($cpint);
if (is_ipaddr($cpint_ip)) {
- $cp_hostcheck .= "\t\tif (\$http_host = $cpint_ip) {\n";
+ $cp_hostcheck .= "\t\tif (\$http_host ~* $cpint_ip) {\n";
$cp_hostcheck .= "\t\t\tset \$cp_redirect no;\n";
$cp_hostcheck .= "\t\t}\n";
}
}
if (isset($config['captiveportal'][$captive_portal]['httpsname']) &&
is_domain($config['captiveportal'][$captive_portal]['httpsname'])) {
- $cp_hostcheck .= "\t\tif (\$http_host = {$config['captiveportal'][$captive_portal]['httpsname']}) {\n";
+ $cp_hostcheck .= "\t\tif (\$http_host ~* {$config['captiveportal'][$captive_portal]['httpsname']}) {\n";
$cp_hostcheck .= "\t\t\tset \$cp_redirect no;\n";
$cp_hostcheck .= "\t\t}\n";
}
OpenPOWER on IntegriCloud