mirror of
https://github.com/YunoHost-Apps/wordpress_ynh.git
synced 2024-09-03 20:36:10 +02:00
Fix et stick files and directories ownership
Co-authored-by: ljf (zamentur) <zamentur@users.noreply.github.com>
This commit is contained in:
parent
e0c54b84ab
commit
1fe2a983f8
3 changed files with 15 additions and 0 deletions
|
@ -230,9 +230,11 @@ $wpcli_alias plugin activate authldap $plugin_network
|
|||
$wpcli_alias plugin activate companion-auto-update $plugin_network
|
||||
$wpcli_alias plugin activate wp-fail2ban-redux $plugin_network
|
||||
|
||||
# Set file and directories ownership
|
||||
chmod 750 "$final_path"
|
||||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:www-data "$final_path"
|
||||
chmod g+s $final_path/wp-content/uploads
|
||||
|
||||
#=================================================
|
||||
# STORE THE CONFIG FILE CHECKSUM
|
||||
|
@ -243,6 +245,8 @@ ynh_store_file_checksum --file="$final_path/wp-config.php"
|
|||
|
||||
chmod 400 "$final_path/wp-config.php"
|
||||
chown $app:$app "$final_path/wp-config.php"
|
||||
# We do not want www-data to get access to this file through the ACLs
|
||||
setfacl -b "$final_path/wp-config.php"
|
||||
|
||||
#=================================================
|
||||
# CREATE A CRON TASK FOR AUTOMATIC UPDATE
|
||||
|
|
|
@ -74,12 +74,17 @@ ynh_script_progression --message="Restoring the app main directory..."
|
|||
|
||||
ynh_restore_file --origin_path="$final_path"
|
||||
|
||||
# Set file and directories ownership
|
||||
chmod 750 "$final_path"
|
||||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:www-data "$final_path"
|
||||
chmod g+s $final_path/wp-content/uploads
|
||||
chmod g+s $(find $final_path/wp-content/uploads -type d)
|
||||
|
||||
chmod 400 "$final_path/wp-config.php"
|
||||
chown $app:$app "$final_path/wp-config.php"
|
||||
# We do not want www-data to get access to this file through the ACLs
|
||||
setfacl -b "$final_path/wp-config.php"
|
||||
|
||||
#=================================================
|
||||
# RESTORE THE PHP-FPM CONFIGURATION
|
||||
|
|
|
@ -277,9 +277,13 @@ $wpcli_alias plugin activate wp-fail2ban-redux $plugin_network
|
|||
# Disable broken plugin http-authentication
|
||||
$wpcli_alias plugin is-installed http-authentication && $wpcli_alias plugin deactivate http-authentication $plugin_network
|
||||
|
||||
|
||||
# Set file and directories ownership
|
||||
chmod 750 "$final_path"
|
||||
chmod -R o-rwx "$final_path"
|
||||
chown -R $app:www-data "$final_path"
|
||||
chmod g+s $final_path/wp-content/uploads
|
||||
chmod g+s $(find $final_path/wp-content/uploads -type d)
|
||||
|
||||
#=================================================
|
||||
# STORE THE CHECKSUM OF THE CONFIG FILE
|
||||
|
@ -290,6 +294,8 @@ ynh_store_file_checksum --file="$final_path/wp-config.php"
|
|||
|
||||
chmod 400 "$final_path/wp-config.php"
|
||||
chown $app:$app "$final_path/wp-config.php"
|
||||
# We do not want www-data to get access to this file through the ACLs
|
||||
setfacl -b "$final_path/wp-config.php"
|
||||
|
||||
#=================================================
|
||||
# CREATE A CRON TASK FOR AUTOMATIC UPDATE
|
||||
|
|
Loading…
Add table
Reference in a new issue