Minor bug fix

This commit is contained in:
usmannasir 2018-08-02 21:14:25 +05:00
parent 780036dfde
commit 162321a477
1 changed files with 1 additions and 3 deletions

View File

@ -520,13 +520,11 @@ RewriteFile .htaccess
sslCheck = 1
for items in data:
if numberOfSites == 1:
if (items.find(virtualHostName) > -1 and items.find(
" map " + virtualHostName) > -1):
continue
if (items.find(virtualHostName) > -1 and (
if (items.find(' ' + virtualHostName) > -1 and (
items.find("virtualHost") > -1 or items.find("virtualhost") > -1)):
check = 0
if items.find("listener") > -1 and items.find("SSL") > -1: