mirror of
https://github.com/YunoHost-Apps/dotclear2_ynh.git
synced 2024-09-03 18:26:29 +02:00
add acl for www-data instead
This commit is contained in:
parent
59a96fdae0
commit
3ed25c02ee
4 changed files with 13 additions and 1 deletions
|
@ -21,7 +21,7 @@
|
|||
; Note: The user is mandatory. If the group is not set, the default user's group
|
||||
; will be used.
|
||||
user = __USER__
|
||||
group = www-data
|
||||
group = __USER__
|
||||
|
||||
; The address on which to accept FastCGI requests.
|
||||
; Valid syntaxes are:
|
||||
|
|
|
@ -87,6 +87,10 @@ chmod 750 "$final_path"
|
|||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:www-data "$final_path"
|
||||
|
||||
# https://dotclear.org/documentation/2.0/admin/install
|
||||
mkdir -p "$final_path/"{cache,public}
|
||||
setfacl -m d:u:www-data:rwx "$final_path/"{cache,public}
|
||||
|
||||
#=================================================
|
||||
# NGINX CONFIGURATION
|
||||
#=================================================
|
||||
|
|
|
@ -69,6 +69,10 @@ chmod 750 "$final_path"
|
|||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:www-data "$final_path"
|
||||
|
||||
# https://dotclear.org/documentation/2.0/admin/install
|
||||
mkdir -p "$final_path/"{cache,public}
|
||||
setfacl -m d:u:www-data:rwx "$final_path/"{cache,public}
|
||||
|
||||
#=================================================
|
||||
# RESTORE THE PHP-FPM CONFIGURATION
|
||||
#=================================================
|
||||
|
|
|
@ -118,6 +118,10 @@ chmod 750 "$final_path"
|
|||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:www-data "$final_path"
|
||||
|
||||
# https://dotclear.org/documentation/2.0/admin/install
|
||||
mkdir -p "$final_path/"{cache,public}
|
||||
setfacl -m d:u:www-data:rwx "$final_path/"{cache,public}
|
||||
|
||||
#=================================================
|
||||
# NGINX CONFIGURATION
|
||||
#=================================================
|
||||
|
|
Loading…
Reference in a new issue