in reply to Re^4: LAMP and hosting: Convenient Perl solution, similar to PHP setup?
in thread LAMP and hosting: Convenient Perl solution, similar to PHP setup?
How would FastCGI prevent mucking with the perl interpreter? In both cases, the interpreter is persistent and perl will not prevent you from changing things that affect future code in the same interpreter.
Running as suexec would make a difference. The equivalent mod_perl setup would be to run a separate mod_perl backend for each user, which I've done in dev environments but it's annoying to set up. The security would then be identical, but it would use more memory than a shared server, just like suexec FastCGI would. In both cases the lack of sharing from copy-on-write is costly.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: LAMP and hosting: Convenient Perl solution, similar to PHP setup?
by Fletch (Bishop) on Mar 12, 2008 at 17:28 UTC | |
by perrin (Chancellor) on Mar 12, 2008 at 17:52 UTC |