Skip to content

Instantly share code, notes, and snippets.

View rezakhademix's full-sized avatar

Reza Khademi rezakhademix

View GitHub Profile
@mehrdadx10
mehrdadx10 / gist:e39d8aabe176b70c3fb12045a1c845a2
Last active September 13, 2021 05:58
laravel file permission
# user as owner
sudo usermod -a -G www-data $USER
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
# webserver as owner
sudo usermod -a -G www-data $USER