Hi all
I just installed and my test list is working fine.
 
I just cannot seem to get my web interface to work.I searched the archives and found what I thought to be theanswer to my problem.
 
But to no avail
If I go to the test url all I get is the apache test page what is the right document root to specify and more importantly what must be in it ??
I use the default install of red-hat 7.2
Something here is eluding me and it is positively driving me nuts :-)
Anything even just a kick to the right readme will be appreciated
 
Tnx
Mozzi
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 the important bits are
 

# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/var/www/html"   
#
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the realname directory are treated as applications and
    # run by the server when requested rather than as documents sent to the client.
    # The same rules about trailing "/" apply to ScriptAlias directives as to
    # Alias.
    #
    ScriptAlias /cgi-bin/  "/home/mailman/cgi-bin/"
 
#
    # "/var/www/cgi-bin" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    #
    <Directory "/home/mailman/cgi-bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
 
    #
    # Note that if you include a trailing / on fakename then the server will
    # require it to be present in the URL.  So "/icons" isn't aliased in this
    # example, only "/icons/".  If the fakename is slash-terminated, then the
    # realname must also be slash terminated, and if the fakename omits the
    # trailing slash, the realname must also omit it.
    #
    Alias /icons/ "/home/mailman/icons/"
 
    <Directory "/home/mailman/cgi-bin/">
        Options ExecCGI
    </Directory>
   
    <Directory "/home/mailman/archives/public/">
        Options FollowSymLinks
        AllowOverride None
   </Directory>

Reply via email to