fix nginx mode

This commit is contained in:
neilpang 2018-12-06 22:05:26 +08:00
parent 598becf619
commit 9841063df9
1 changed files with 1 additions and 1 deletions

View File

@ -2839,7 +2839,7 @@ _isRealNginxConf() {
_skip_ssl=1
for _listen_i in $(echo "$_seg_n" | tr "\t" ' ' | grep "^ *listen" | tr -d " "); do
if [ "$_listen_i" ]; then
if [ "$(echo "$_listen_i" | _egrep_o "listen.*ssl[ |;]")" ]; then
if [ "$(echo "$_listen_i" | _egrep_o "listen.*ssl")" ]; then
_debug2 "$_listen_i is ssl"
else
_debug2 "$_listen_i is plain text"