mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-25 22:51:39 +00:00
fix format
This commit is contained in:
parent
5d943a35f8
commit
302c41edc9
14
acme.sh
14
acme.sh
@ -2433,11 +2433,17 @@ _checkConf() {
|
|||||||
#d , conf
|
#d , conf
|
||||||
_isRealNginxConf() {
|
_isRealNginxConf() {
|
||||||
_debug "_isRealNginxConf $1 $2"
|
_debug "_isRealNginxConf $1 $2"
|
||||||
if [ -f "$2" ] && grep "^ *server_name " "$2" | grep " $1" >/dev/null; then
|
if [ -f "$2" ]; then
|
||||||
return 0
|
for _fln in $(grep -n "^ *server_name.* $1" "$2" | cut -d : -f 1); do
|
||||||
else
|
_debug _fln "$_fln"
|
||||||
return 1
|
if [ "$_fln" ]; then
|
||||||
|
_listen=$(cat "$2" | _head_n "$_fln" | grep "^ *listen .*" | _tail_n 1)
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
#restore all the nginx conf
|
#restore all the nginx conf
|
||||||
|
Loading…
Reference in New Issue
Block a user