Skip to Content.
Sympa Menu

en - RE: [sympa-users] 12 instances of wwsympa.fcgi with fastcgi

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: "Adam Bernstein" <address@concealed>
  • To: <address@concealed>
  • Subject: RE: [sympa-users] 12 instances of wwsympa.fcgi with fastcgi
  • Date: Thu, 22 Aug 2002 12:22:58 -0700

> I have noticed 10 instances of wwsympa.fcgi loaded with fastcgi under the
> user/group sympa.sympa
> Also 2 instances under nobody.nobody

I don't know about the 10 instances (have you checked their start times?
are they just somehow leftovers from previous attemps?), but the 2 instances
as nobody.nobody makes me think you need to change your httpd.conf setup.
This was either absent from or contradicted by the docs, but I found it
necessary to enclose the FastCGI lines within the sympa.sympa virtual host.
Subsequent virtual hosts shouldn't repeat the FastCGI lines, but do need
to include the ScriptAlias and SetHandler lines.

Eg:

<VirtualHost *>
User sympa
Group sympa
DocumentRoot /home/www/htdocs
ServerName ambergroups.org

ScriptAlias /lists /home/sympa/bin/wwsympa.fcgi
<Location /lists>
SetHandler fastcgi-script
</Location>

# FastCGI module
FastCgiWrapper /home/www/bin/suexec
FastCgiServer /home/sympa/bin/wwsympa.fcgi -processes 2 -idle-timeout
9\
0

</VirtualHost>

<VirtualHost *>
User sympa
Group sympa
DocumentRoot /home/www/htdocs
ServerName lists.joseluisorozco.com

ScriptAlias /lists /home/sympa/bin/wwsympa.fcgi
<Location /lists>
SetHandler fastcgi-script
</Location>

</VirtualHost>




Archive powered by MHonArc 2.6.19+.

Top of Page