Skip to content

Instantly share code, notes, and snippets.

View rezakhademix's full-sized avatar

Reza Khademi rezakhademix

View GitHub Profile
# 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
@rezakhademix
rezakhademix / docker-php-ext.md
Last active January 13, 2025 05:11
List of php docker extension with some guides to use them

List of PHP docker extensions:

RUN apt update
RUN apt upgrade -y
RUN apt install -y apt-utils
RUN a2enmod rewrite