User Tools

Site Tools


wmanager:folder_security_tips

TECH2018/S1/Folder security tips

FOLDER SECURITY

This is the recommended steps for security on Apache:

  • Set the default security
    • 644 files, root.root
    • 755 folders, root.root

Script to change the permissions recursively:

chown root.root demo.wmanager.org/ -R
find ./demo.wmanager.org -type d -exec chmod 755 {} \;
find ./demo.wmanager.org -type f -exec chmod 644 {} \;

Back to installation page

wmanager/folder_security_tips.1526301281.txt.gz ยท Last modified: 2018/05/14 12:34 by Gianluca Pelliccioli