From: Henrik Lidström <[EMAIL PROTECTED]>
Reply-To: DBMail mailinglist <[email protected]>
To: DBMail mailinglist <[email protected]>
Subject: Re: [Dbmail] DBMA administrator
Date: Sun, 24 Sep 2006 20:51:51 +0200
Jim Douglas skrev:
I am going to completed the DBMA install but get this error,
Not Found
The requested URL /dbmailadministrator was not found on this server
I have this code in my http.conf
<Directory "/usr/local/apache2/sites/dbmailadministrator">
# change for your system
AllowOverride None
Options ExecCGI MultiViews
Order allow,deny
Allow from all
AuthUserFile /usr/local/apache2/sites/dbmailadministrator/.htpasswd
# change for your system
AuthGroupFile "root"
AuthType Basic
AuthName "Administration Only. Enter username and password."
require valid-user
order allow,deny
</Directory>
..any suggestions would be appreciated...I have FC 5 and Apache 2.2.3
Jim
_______________________________________________
Dbmail mailing list
[email protected]
https://mailman.fastxs.nl/mailman/listinfo/dbmail
For instance, within your v-host/site conf, add
Alias /dbmailadmin /usr/local/apache2/sites/dbmailadministrator
(or just above your lines there) and restart apache.
/Henrik
_______________________________________________
Dbmail mailing list
[email protected]
https://mailman.fastxs.nl/mailman/listinfo/dbmail
..so it should look something like this? I assume this is only allowing
someone to connect from localhost..correct?
<VirtualHost *:80>
ServerName localhost
DocumentRoot /usr/local/apache2/sites/dbmailadministrator
Alias /dbmailadmin /usr/local/apache2/sites/dbmailadministrator
</VirtualHost>
Thanks,
Jim