OS: CentOs
Whenever apache (apache2) creates a file or directory it automatically sets the permissions to 777. I want it's directories to be 775 and files 664. How can I fix this?
Answer
Put umask 002
in the end of /etc/sysconfig/httpd
and restart httpd (service restart httpd
) and it should do the trick for future files. Apache inherits the umask from its parent process, so this setup makes that happen.
No comments:
Post a Comment