Browse Source
Merge pull request #4749 from Nirzak/Nirzak-patch-1
Fixed grep pattern regex for nginx conf path
pull/4777/head
neil
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
acme.sh
|
@ -3130,7 +3130,7 @@ _setNginx() { |
|
|
_err "nginx command is not found." |
|
|
_err "nginx command is not found." |
|
|
return 1 |
|
|
return 1 |
|
|
fi |
|
|
fi |
|
|
NGINX_CONF="$(nginx -V 2>&1 | _egrep_o "--conf-path=[^ ]* " | tr -d " ")" |
|
|
|
|
|
|
|
|
NGINX_CONF="$(nginx -V 2>&1 | _egrep_o "\-\-conf-path=[^ ]* " | tr -d " ")" |
|
|
_debug NGINX_CONF "$NGINX_CONF" |
|
|
_debug NGINX_CONF "$NGINX_CONF" |
|
|
NGINX_CONF="$(echo "$NGINX_CONF" | cut -d = -f 2)" |
|
|
NGINX_CONF="$(echo "$NGINX_CONF" | cut -d = -f 2)" |
|
|
_debug NGINX_CONF "$NGINX_CONF" |
|
|
_debug NGINX_CONF "$NGINX_CONF" |
|
|