1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00

Remove symlink to httpauth config files

This commit is contained in:
Ramael Metatron 2016-10-16 19:37:04 -05:00 committed by GitHub
parent b44fcd8929
commit 7b2b895d57

@ -23,7 +23,8 @@ source $VESTA/conf/vesta.conf
# Defining htpasswd file
htaccess="$HOMEDIR/$user/conf/web/$WEB_SYSTEM.$domain.conf_htaccess"
htpasswd="$HOMEDIR/$user/conf/web/$WEB_SYSTEM.$domain.htpasswd"
shtaccess="$HOMEDIR/$user/conf/web/s$WEB_SYSTEM.$domain.conf_htaccess"
shtpasswd="$HOMEDIR/$user/conf/web/s$WEB_SYSTEM.$domain.htpasswd"
#----------------------------------------------------------#
# Verifications #
@ -54,7 +55,7 @@ sed -i "/^$auth_user:/d" $htpasswd
# Deleting password protection
if [ "$(echo "$AUTH_USER" |tr : '\n' |wc -l)" -le 1 ]; then
rm -f $htaccess $htpasswd
rm -f $htaccess $htpasswd $shtaccess $shtpasswd
restart_required='yes'
fi