I\'m using Apache Web Server that has the owner set to _www:_www. I never know what is the best practice with file permissions, for example when I create new La
_www:_www
Add to composer.json
"scripts": { "post-install-cmd": [ "chgrp -R www-data storage bootstrap/cache", "chmod -R ug+rwx storage bootstrap/cache" ] }
After composer install
composer install