Rails App permissions?

I can’t start my app and I suspect permissions and ownership. What
permissions should a Rails App have? Can I set 755 on everything or
should it be less on some files?

On Feb 7, 12:54pm, Paul B. [email protected] wrote:

I can’t start my app and I suspect permissions and ownership. What
permissions should a Rails App have? Can I set 755 on everything or
should it be less on some files?

As long as the user running the app can read everything in there, and
has write access to the tmp folder in the app (not always necessary,
but some setups require this) you should be fine

Fred

Frederick C. wrote in post #980055:

On Feb 7, 12:54pm, Paul B. [email protected] wrote:

I can’t start my app and I suspect permissions and ownership. What
permissions should a Rails App have? Can I set 755 on everything or
should it be less on some files?

As long as the user running the app can read everything in there, and
has write access to the tmp folder in the app (not always necessary,
but some setups require this) you should be fine

Fred

Thanks.