Hi,
   I am not sure it's a good idea....anyone else has comment on it?
 
Thanks
 
 

在2007-12-12,"Erik Wasser" <[EMAIL PROTECTED]> 写道:

Hello list,

I've made a patch for this old posting[1].

My problem was that I need to use 'mod_fcgid' but without the suexec 
stuff. My apache is already running as non-root and I need a little 
speedup of my script based CMS (I'm using catalyst).

So I've added the flag 'Disable_suexec_check'. So you have to write in 
your httpd.conf some like this:

> Disable_suexec_check on

and everything is fine.

The patch is small, the main part is consists of adding the flag and the 
small rest is just a change of one if statement. Instead of

> if (unixd_config.suexec_enabled) {

I use

> if (!get_disable_suexec_check(main_server) && \
>    unixd_config.suexec_enabled) { 

so this will result into a unixd_setup_child() call and not a 
suexec_setup_child() call.

Comments are welcome and you can of course include the patch in the next 
release of mod_fcgid.

Thanks for your work.

[1]http://sourceforge.net/mailarchive/message.php?msg_name=1192153501.30624.1215466817%40webmail.messagingengine.com

-- 
So long... Fuzz
-------------------------------------------------------------------------
SF.Net email is sponsored by: 
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Mod-fcgid-users mailing list
Mod-fcgid-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mod-fcgid-users

Reply via email to