Skip to Content.
Sympa Menu

en - Re: [sympa-users] Setting the Sympa URL to the root URL

Subject: The mailing list for listmasters using Sympa

List archive

Chronological Thread  
  • From: Miles Fidelman <address@concealed>
  • Cc: Sympa Mailing list <address@concealed>
  • Subject: Re: [sympa-users] Setting the Sympa URL to the root URL
  • Date: Tue, 12 Jan 2010 08:01:48 -0500

Roger B.A. Klorese wrote:
I've set Sympa's URL to http://domain.tld/ (with a valid domain) and set a ScriptAlias to find index.fcgi.

I can access WWSympa pages fine.

However, my welcome messages say:

/The list homepage: http://domain.tld/sympa/info/test
General informations about mailing lists: http://domain.tld/sympa/help/introduction/

...which doesn't work.

Is there a correct way of making this setup work? Or must I just install it all in /sympa and use a redirect from the root?
For what it's worth (I'm still running Sympa 5, and I haven't touched the setup in a while):

For a site with top level domain lists.fusn.org, set up with its own static IP:

Sympa is installed in /home/sympa
Documents in /var/fusn

Apache config file, /etc/apache2/sites-enabled/fusn contains:
<VirtualHost 207.154.13.59:80>
ServerAdmin address@concealed
ServerName lists.fusn.org

DocumentRoot /var/fusn/

<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/fusn/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>

ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>

ErrorLog /var/log/apache2/error.log
LogLevel warn

CustomLog /var/log/apache2/access.log combined
ServerSignature On

Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>

<Location /sympa>
SetHandler fastcgi-script
</Location>

ScriptAlias /sympa /home/sympa/bin/wwsympa-wrapper.fcgi
ScriptAlias /wws /home/sympa/bin/wwsympa-wrapper.fcgi
ScriptAlias /index.html /home/sympa/bin/wwsympa-wrapper.fcgi

</VirtualHost>

--
In theory, there is no difference between theory and practice.
In practice, there is. .... Yogi Berra





Archive powered by MHonArc 2.6.19+.

Top of Page