آره همون ownership
کد زیر رو تو ssh برای هر یوزری که می خوای بزن
برای کلوکسو فولدر پابلیکش فرق میکنه
find /home/user/public_html -type d -exec chown user:user '{}' \;
find /home/user/public_html -type f -exec chown user:user '{}' \;
find /home/user/public_html -type d -exec chmod 755 '{}' \;
find /home/user/public_html -type f -exec chmod 644 '{}' \;