minor, fix apache version

This commit is contained in:
neil 2016-05-16 22:42:32 +08:00
parent 2c554a4bbb
commit 5778811a18
1 changed files with 5 additions and 5 deletions

10
acme.sh
View File

@ -963,8 +963,8 @@ _setApache() {
fi fi
#backup the conf #backup the conf
_debug "Backup apache config file" $httpdconf _debug "Backup apache config file" "$httpdconf"
cp $httpdconf $APACHE_CONF_BACKUP_DIR/ cp "$httpdconf" "$APACHE_CONF_BACKUP_DIR/"
_info "JFYI, Config file $httpdconf is backuped to $APACHE_CONF_BACKUP_DIR/$httpdconfname" _info "JFYI, Config file $httpdconf is backuped to $APACHE_CONF_BACKUP_DIR/$httpdconfname"
_info "In case there is an error that can not be restored automatically, you may try restore it yourself." _info "In case there is an error that can not be restored automatically, you may try restore it yourself."
_info "The backup file will be deleted on sucess, just forget it." _info "The backup file will be deleted on sucess, just forget it."
@ -976,14 +976,14 @@ _setApache() {
apacheMajer="$(echo "$apacheVer" | cut -d . -f 1)" apacheMajer="$(echo "$apacheVer" | cut -d . -f 1)"
apacheMinor="$(echo "$apacheVer" | cut -d . -f 2)" apacheMinor="$(echo "$apacheVer" | cut -d . -f 2)"
if [ "$apacheVer" ] && [ "$apacheMajer" -ge "2" ] && [ "$apacheMinor" -ge "4" ] ; then if [ "$apacheVer" ] && [ "$apacheMajer$apacheMinor" -ge "24" ] ; then
echo " echo "
Alias /.well-known/acme-challenge $ACME_DIR Alias /.well-known/acme-challenge $ACME_DIR
<Directory $ACME_DIR > <Directory $ACME_DIR >
Require all granted Require all granted
</Directory> </Directory>
" >> $httpdconf " >> "$httpdconf"
else else
echo " echo "
Alias /.well-known/acme-challenge $ACME_DIR Alias /.well-known/acme-challenge $ACME_DIR
@ -992,7 +992,7 @@ Alias /.well-known/acme-challenge $ACME_DIR
Order allow,deny Order allow,deny
Allow from all Allow from all
</Directory> </Directory>
" >> $httpdconf " >> "$httpdconf"
fi fi