Hi,
I have a server with shared web hosting. Each user's served files are owned by themselves, and each use has their own PHP-FPM pool. Apache has read permissions via ACL.
WordPress will sometimes, such as when installing certain plugins, undo the ACL, rendering the site unreadable by Apache, and therefore non functional. Is there a way I can prevent this from happening, while retaining currently effective permissions?
I have a server with shared web hosting. Each user's served files are owned by themselves, and each use has their own PHP-FPM pool. Apache has read permissions via ACL.
Code:
drwxr-x---+ 5 user1 user1 25 Mar 20 09:30 public/
Code:
# file: public
# owner: user1
# group: user1
group:www:r-x-----------:-------:allow
owner@:rwxp--aARWcCos:-------:allow
group@:r-x---a-R-c--s:-------:allow
everyone@:------a-R-c--s:-------:allow
WordPress will sometimes, such as when installing certain plugins, undo the ACL, rendering the site unreadable by Apache, and therefore non functional. Is there a way I can prevent this from happening, while retaining currently effective permissions?