For instance; CMS Joomla is recommended here on this thread https://forum.joomla.org/viewtopic.php?t=933652
What is the FreeBSD way of achieving the same results?
find -type d -exec chmod 755 {} \;
find -type f -exec chmod 644 {} \;
This sets recursively the folder permissions to 755 (770 is wrong!) and files to "644"
What is the FreeBSD way of achieving the same results?