Skip to Content.
Sympa Menu

en - RES: [sympa-users] apache2.conf

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: "Rodrigo Parodi" <address@concealed>
  • To: "'Mark K'" <address@concealed>
  • Cc: <address@concealed>
  • Subject: RES: [sympa-users] apache2.conf
  • Date: Fri, 18 Jan 2008 09:04:12 -0200

Thanks Mark, for your help

I set this on my apache2.conf but don't works. When I start my browser
appears:

"Not Found. The requested URL /sympa was not found on this server."



I am reading the sympa manual (sympa.org) and I found this:

"
wwsympa.fcgi access permissions

Default behaviour
Until version 5.3: SetuidPerl

This is the default method but might be insecure. If you don't set the
-enable_secure configuration option, wwsympa.fcgi is installed with the
SetUID bit set. On most systems, you will need to install the suidperl
package.

Otherwise, you can overcome restrictions on the execution of suid scripts by
using a short C program, owned by Sympa and with the suid bit set, to start
wwsympa.fcgi. Here is an example (with no guarantee attached):

#include <unistd.h>
#define WWSYMPA ''/home/sympa/bin/wwsympa.fcgi''
int main(int argn, char **argv, char **envp) {
argv[0] = WWSYMPA;
execve(WWSYMPA,argv,envp);
}
"

My question is: Where I set this configuration?




-----Mensagem original-----
De: Mark K [mailto:address@concealed]
Enviada em: quinta-feira, 17 de janeiro de 2008 17:36
Para: address@concealed
Cc: address@concealed
Assunto: Re: [sympa-users] apache2.conf

On Thu, 17 Jan 2008 20:11:19 +0100
<address@concealed> wrote:

>
> Please someone help me...
>
> Someone have the basic configuration on apache2.conf to give me? I
> think my configuration is wrong, because my webpage of sympa no
> starts.
>
> Whitch is the sympa's path of DocumentRoot ?
>
> Thanks

There is no documentroot for sympa. Here's what I have. Note that I
use fcgid:
# Sympa settings
Alias /static-sympa /home/sympa/static_content
<Directory "/home/sympa/static_content">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
<Directory "/home/sympa/bin/">
<Files "*wrapper.fcgi">
Order allow,deny
Allow from all
</Files>
</Directory>
<Location /sympa>
SetHandler fcgid-script
</Location>
ScriptAlias /sympa /home/sympa/bin/wwsympa-wrapper.fcgi



--
Mark K




Archive powered by MHonArc 2.6.19+.

Top of Page