Hello, I've got two questions both about running awstats in a multiple domain setup on apache 2.4. I've got the below block in each of my ssl-enabled virtual hosts that use awstats. Everything is working. First of all can I get a confirmation that my authentication and authorization settings are good? Second, currently I have to: domain.com/awstats/awstats.pl which does work. I'd like to change things so that the last awstats.pl is not needed so that users can just go to: domain.com/awstats and they'll be prompted for a username/password and then be able to use awstats. # awstats Alias /awstatsclasses "/usr/local/www/awstats/classes/" Alias /awstatscss "/usr/local/www/awstats/css/" Alias /awstatsicons "/usr/local/www/awstats/icon/" ScriptAlias /awstats/ "/usr/local/www/awstats/cgi-bin/" <Directory "/usr/local/www/awstats/"> Options None AllowOverride None Require all granted </Directory> <Directory "/usr/local/www/awstats/cgi-bin/"> Options ExecCGI AddHandler cgi-script .cgi .pl </Directory> # This is to force authentication when trying to access /awstats <Location /awstats> # mod_authn_core and mod_auth_basic configuration # for mod_authn_dbd AuthType Basic AuthName "Awstats Access" # To cache credentials, put socache ahead of dbd here AuthBasicProvider socache dbd # Also required for caching: tell the cache to cache dbd lookups! AuthnCacheProvideFor dbd # is the AuthnCacheContext line needed? #AuthnCacheContext my-server # mod_authn_dbd SQL query to authenticate a user AuthDBDUserPWQuery "SELECT passwd FROM auth WHERE username = %s AND active=1" require valid-user </Location> Thanks. Dave. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx