Fix permissions #12

Merged
miraty merged 5 commits from testing into master 2022-08-28 15:16:23 +02:00
Showing only changes of commit b85dd78fb9 - Show all commits

View file

@ -9,6 +9,6 @@ libreqr_apply_filesystem_permissions() {
find "$final_path" -type f -name "*.css" -exec chown $app:www-data "{}" +
find "$final_path" -type f -name "*.less" -exec chmod 440 "{}" +
find "$final_path" -type f -name "*.less" -exec chown $app:www-data "{}" +
chmod 350 "$final_path"/css
chmod 550 "$final_path"/css
chown $app:www-data "$final_path"/css
}