View Single Post
  #3   (View Single Post)  
Old 15th February 2009
DNAeon DNAeon is offline
Shell Scout
 
Join Date: Sep 2008
Location: Bulgaria
Posts: 138
Default

Thanks, for the quick reply!

I've tried this way too..
Code:
<VirtualHost *:80>
    ServerAdmin admin@mydomain.net
    DocumentRoot "/usr/local/mailman/cgi-bin"
    ServerName lists.mydomain.net
    ServerAlias lists.mydomain.net
    #ScriptAlias /cgi-bin/ "/usr/local/mailman/cgi-bin/"
    #ScriptAlias /mailman/ "/usr/local/mailman/cgi-bin/"
    #Alias /pipermail "/usr/local/mailman/archives/public"
    #Alias /icons "/usr/local/mailman/icons"
    <Directory /usr/local/mailman/cgi-bin>
       Order Allow,Deny
       Allow from all
       Options ExecCGI
    </Directory>

    ErrorLog /var/log/httpd-error.log
    CustomLog /var/log/httpd-access.log combined
</VirtualHost>
After that tried without the comments, changed the DocumentRoot to "/usr/local/mailman" - nothing... Still nothing in the logs - seems that for Apache everything is working fine..

Any other tips?
__________________
"I never think of the future. It comes soon enough." - A.E

Useful links: FreeBSD Handbook | FreeBSD Developer's Handbook | The Porter's Handbook | PF User's Guide | unix-heaven.org
Reply With Quote