2013-08-04, 12:37:44
(This post was last modified: 2013-08-04, 13:16:01 by michaellindahl.)
I'm familiar with unix file permissions, but I'm no expert. The default umask is 0022 on my VPS provider. I'm using SSH to SFTP into the server. I kept myself as the owner and set the group to be Apache (www-data). I set the permissions to 775 and everything appears to be okay.
Code:
$ wget http://get-simple.info/latest
$ unzip latest -d domain.com/public_html/
$ mv * ..
$ rm -r GetSimpleCMS_3.2.1/
$ ls -l
$ sudo chown -R michaellindahl:www-data public_html
$ sudo chmod 775 -R public_html