Browse Source

fix apache mode: It's not necessary to chown for apache mode.

pull/120/head
neil 9 years ago
parent
commit
df886ffa25
  1. 9
      le.sh

9
le.sh

@ -1127,10 +1127,11 @@ issue() {
mkdir -p "$wellknown_path"
echo -n "$keyauthorization" > "$wellknown_path/$token"
webroot_owner=$(_stat $Le_Webroot)
_debug "Changing owner/group of .well-known to $webroot_owner"
chown -R $webroot_owner "$Le_Webroot/.well-known"
if [[ ! "$usingApache" ]] ; then
webroot_owner=$(_stat $Le_Webroot)
_debug "Changing owner/group of .well-known to $webroot_owner"
chown -R $webroot_owner "$Le_Webroot/.well-known"
fi
fi
fi

Loading…
Cancel
Save