I'm using localhost to develop some web pages (LAMP stack, Lubuntu desktop, trusty 14.04).
Each time I create a new folder inside /var/www/html, read
privileges seem to be set to owner only
by default. This is resulting in a blank white page when I go to localhost/folder-name in my browser.
How can I change things so that the default read privilege is anyone
for my localhost projects? I'd like to avoid having to change folder permissions each time I create a new folder.
sudo chmod g+rwxs /var/www/html
? I'm not entirely sure – henrywright Jan 26 '15 at 23:22-R
mean the changes will be applied recursively? And I take itg+rwxs
are the privileges? Do you know where I could look for more information on them? Thanks again – henrywright Jan 27 '15 at 10:33