Set Debian 10 File/Folder Permissions
Code Markup
$ chown -R user /home/user
find /path/to/public_html/ -type f -exec chmod 0644 {} +
find /path/to/public_html/ -type d -exec chmod 0755 {} +
$ chown -R user /home/user
find /path/to/public_html/ -type f -exec chmod 0644 {} +
find /path/to/public_html/ -type d -exec chmod 0755 {} +