Level 73
I think you are typing it wrong
https://superuser.com/questions/91935/how-to-recursively-chmod-all-directories-except-files
sudo find /path/to/base/dir -type d -exec chmod 755 {} +
sudo find /path/to/base/dir -type f -exec chmod 644 {} +
sudo setfacl -Rdm u:www-data:rwx,u:GabotronES:rwx storage bootstrap/cache
sudo setfacl -Rm u:www-data:rwx,u:GabotronES:rwx storage bootstrap/cache
Never used setfacl myself I rather just use chown instead.