What are the permissions I need?

Posted by Eric on Stack Overflow See other posts from Stack Overflow or by Eric
Published on 2010-04-21T18:10:16Z Indexed on 2010/04/21 18:13 UTC
Read the original article Hit count: 316

Filed under:
|

My folder at:

/usr/local/www/.ext_env_vars

has a bunch of files in it that my app needs to read. The user is 'webapp'

So, I changed the perms like so:

chmod -R 400 .ext_env_vars
chown -R webapp.webapp .ext_env_vars

The application can't read these. However, when I chmod 777, they are read by the app. So, it isn't that I have a path problem. Seems to be permissions only.

So, what would I have to do to the permissions to make webapp be able to read those files in the .ext_env_vars folder?

Thanks Eric

© Stack Overflow or respective owner

Related posts about file-permissions

Related posts about linux