Skip to Content.
Sympa Menu

en - fastcgi and mod_suexec

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: address@concealed
  • To: address@concealed
  • Subject: fastcgi and mod_suexec
  • Date: Sun, 26 Oct 2003 11:35:48 +0100

Hi,

I've sucessfully configured apache to work with the module su_exec.
The script /home/sympa/cgi/wwsympa.fcgi runs with the user sympa
and that works great.

Then, i wanted to add the fastcgi support. But it seems that fastcgi
doesnot take care of the suexec.
The processes launched by fastcgi are run with the httpd user :(

httpd 8352 2.7 12.8 17120 15236 ? S 12:26 0:01 /usr/bin/perl
-U /home/sympa/cgi/wwsympa.fcgi


Is there a mean to make mod_suexec and fastcgi work well together ?

Here is my virtual host configuration ( apache 2 ) :

<VirtualHost 192.168.0.1:80>

SuexecUserGroup sympa sympa

ServerAdmin address@concealed
ServerName sympa.zerezo.org
DocumentRoot /var/www/sympa.zerezo.org
ErrorLog /var/log/httpd/sympa-error.log
CustomLog /var/log/httpd/sympa-access.log common

ScriptAlias /wws /home/sympa/cgi/wwsympa.fcgi

FastCgiServer /home/sympa/cgi/wwsympa.fcgi -processes 2
<Location "/wss">
SetHandler fastcgi-script
</Location>

<Location "/">
Options Indexes FollowSymLinks MultiViews
Order allow,deny
Allow from all
</Location>

</VirtualHost>



Archive powered by MHonArc 2.6.19+.

Top of Page