vote up 4 vote down star
2

I am setting up a LAMP server and would like to set Apache's umask setting to 002 so that all Apache-created files have the group write permission bit set (so members of the same group can overwrite the files).

Does anyone know how to do this? I know that on Ubuntu, you can use the /etc/apache2/envvars file to configure the umask, but the server is running CentOS.

Update This question is related to another I asked a while ago (http://stackoverflow.com/questions/174715/linux-users-and-groups-for-a-lamp-server). If prefered, please update this other question with what the best set-up is to use for having a developer user on a server that can edit files created by the apache user.

flag

50% accept rate

4 Answers

vote up 2 vote down check

Apache inherits its umask from its parent process (i.e. the process starting Apache); this should typically be the /etc/init.d script. So put a umask command in that script.

link|flag
vote up 3 vote down

For CentOS and other Red Hat distros, add the umask setting to /etc/sysconfig/httpd and restart apache.

[root ~]$ echo "umask 002" >> /etc/sysconfig/httpd
[root ~]$ service httpd restart

More info: Apache2 umask | MDLog:/sysadmin

For Debian and Ubuntu systems, you would similarly edit /etc/apache2/envvars.

link|flag
vote up 0 vote down

Thanks PWFisher, Your answer was on the nose for a centos5 system.

link|flag
vote up -1 vote down

Drifting away from the "tried and true Apache way" is usually not recommended. Lots of time and hard won experience has gone into the selection of such things.

link|flag
Must have been asleep when that memo was passed around - any links for the tried and tested way? – DavidWinterbottom Jan 9 at 15:26
-1 Spreading FUD rarely helps. – Maine Sep 17 at 16:06
@Maine, it's not FUD. Google umask 002 apache and take your pick. – Rob Wells Sep 17 at 16:38
@DavidWinterbottom, this has been policy since the mid-nineties for the site that I'm associated with. Thiird biggest website in the world btw. – Rob Wells Sep 17 at 16:43
Forgot to say, see also the book of "lock it down unless you really need it" security. Only explicitly allow what you want to allow. – Rob Wells Sep 17 at 16:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.