Connecting Tech Pros Worldwide Forums | Help | Site Map

Digest auth error

Newbie
 
Join Date: Mar 2007
Posts: 4
#1: Nov 17 '08
Hi Guys

I am trying to setup Digest authorization for one of my virtual hosts. The problem is when I try to start apache I get the following error:

Expand|Select|Wrap|Line Numbers
  1. Invalid command 'AuthDigestDomain', perhaps misspelled or defined by a module not included in the server configuration
Below is my configuration in the vhosts conf file:

Expand|Select|Wrap|Line Numbers
  1. NameVirtualHost 127.0.0.1
  2. <VirtualHost 127.0.0.1>
  3.    DocumentRoot /www/sites/site1
  4.    ServerName www10.site.local
  5.       <Location /sites/>
  6.             AuthType Digest
  7.             AuthName MySite
  8.             AuthDigestDomain http://www10.site.local
  9.             AuthDigestProvider file
  10.             AuthUserFile /usr/auth/.digest_pw
  11.             Require valid-user
  12.       </Location>
  13. </VirtualHost>
Does anyone know where I am going wrong? I am running the latest version of apache.

Reply