I'm trying to setup a chmod using this command
sudo chmod +a "www-data allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs
apparently this does not work on debian.
Any clue on how to achieve the same thing ?
I'm trying to setup a chmod using this command
sudo chmod +a "www-data allow delete,write,append,file_inherit,directory_inherit" app/cache app/logs
apparently this does not work on debian.
Any clue on how to achieve the same thing ?
The command seems to be correct... if you are using a version of CHMOD which supports ACLs and a filesystem which does the same.
The Symfony documentation at Installing and Configuring Symfony explains that if chmd +a is not supported, you can install the acl package and use the setfacl command instead of chmod +a.
Once you install the acl package, follow the directions at FilePermissions#ACLs to enable acl on your partition. This will allow you to use setfacl,