Skip to content

Instantly share code, notes, and snippets.

@tuckbloor
Created August 6, 2024 07:39
Show Gist options
  • Save tuckbloor/454f0d9d63eefc227fb6c083c5aec132 to your computer and use it in GitHub Desktop.
Save tuckbloor/454f0d9d63eefc227fb6c083c5aec132 to your computer and use it in GitHub Desktop.
laravel set up folder permissions
sudo chown -R $USER:www-data .
sudo find . -type f -exec chmod 664 {} \;
sudo find . -type d -exec chmod 775 {} \;
sudo chgrp -R www-data storage bootstrap/cache
sudo chmod -R ug+rwx storage bootstrap/cache
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment