chmod 755 templates_c
This basically means that everyone has read and execute access. And also that the owner has write access to the file/folder.
You then need to explicitly set the permissions for the user 'apache' because end users will be under that username when viewing the application. To do this:
setfacl -m user:apache:rwx,mask:rwx templates_c
After that end-users should have no problem viewing the application!
No comments:
Post a Comment