mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 13:11:41 +00:00
minor, add more apache debug info
This commit is contained in:
parent
2ee5d873db
commit
78768e985b
7
acme.sh
7
acme.sh
@ -916,16 +916,19 @@ _apachePath() {
|
||||
return 1
|
||||
fi
|
||||
httpdconfname="$(apachectl -V | grep SERVER_CONFIG_FILE= | cut -d = -f 2 | tr -d '"' )"
|
||||
_debug httpdconfname "$httpdconfname"
|
||||
if _startswith "$httpdconfname" '/' ; then
|
||||
httpdconf="$httpdconfname"
|
||||
httpdconfname="$(basename $httpdconfname)"
|
||||
else
|
||||
httpdroot="$(apachectl -V | grep HTTPD_ROOT= | cut -d = -f 2 | tr -d '"' )"
|
||||
_debug httpdroot "$httpdroot"
|
||||
httpdconf="$httpdroot/$httpdconfname"
|
||||
fi
|
||||
_debug httpdconf "$httpdconf"
|
||||
|
||||
if [ ! -f $httpdconf ] ; then
|
||||
_err "Apache Config file not found" $httpdconf
|
||||
if [ ! -f "$httpdconf" ] ; then
|
||||
_err "Apache Config file not found" "$httpdconf"
|
||||
return 1
|
||||
fi
|
||||
return 0
|
||||
|
Loading…
Reference in New Issue
Block a user