Skip to content

Commit

Permalink
Fixed: AH00547: Could not resolve host name {DOMAIN_IPS} (Apache ITK …
Browse files Browse the repository at this point in the history
…server impl.)

[ci skip]
  • Loading branch information
nuxwin committed Jul 23, 2016
1 parent 9468ea0 commit 3657369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/PerlLib/Servers/httpd/apache_itk.pm
Expand Up @@ -1408,7 +1408,7 @@ sub _addCfg
HTTPD_CUSTOM_SITES_DIR => $self->{'config'}->{'HTTPD_CUSTOM_SITES_DIR'},
AUTHZ_ALLOW_ALL => $isApache24 ? 'Require all granted' : 'Allow from all',
AUTHZ_DENY_ALL => $isApache24 ? 'Require all denied' : 'Deny from all',
DOMAIN_IP => join(' ', map { ($net->getAddrVersion( $_ ) eq 'ipv4' ? $_ : "[$_]") . ':80' } @domainIPs)
DOMAIN_IPS => join(' ', map { ($net->getAddrVersion( $_ ) eq 'ipv4' ? $_ : "[$_]") . ':80' } @domainIPs)
}
);

Expand Down

0 comments on commit 3657369

Please sign in to comment.