What are the best linux permissions to use for my website?
        Posted  
        
            by 
                Nic
            
        on Server Fault
        
        See other posts from Server Fault
        
            or by Nic
        
        
        
        Published on 2012-02-06T01:50:32Z
        Indexed on 
            2013/10/23
            10:01 UTC
        
        
        Read the original article
        Hit count: 258
        
This is a Canonical Question about File Permissions on a Linux web server.
I have a Linux web server running Apache2 that hosts several websites. Each website has its own folder in /var/www/.
/var/www/contoso.com/
/var/www/contoso.net/
/var/www/fabrikam.com/
The base directory /var/www/ is owned by root:root. Apache is running as www-data:www-data. The Fabrikam website is maintained by two developers, Alice and Bob. Both Contoso websites are maintained by one developer, Eve. All websites allow users to upload images. If a website is compromised, the impact should be as limited as possible.
I want to know the best way to set up permissions so that Apache can serve the content, the website is secure from attacks, and the developers can still make changes. One of the websites is structured like this:
/var/www/fabrikam.com
    /cache
    /modules
    /styles
    /uploads
    /index.php
How should the permissions be set on these directories and files? I read somewhere that you should never use 777 permissions on a website, but I don't understand what problems that could cause. During busy periods, the website automatically caches some pages and stores the results in the cache folder. All of the content submitted by website visitors is saved to the uploads folder.
© Server Fault or respective owner