Digest auth error

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Shaolin
    New Member
    • Mar 2007
    • 4

    Digest auth error

    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:

    Code:
    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:

    Code:
    NameVirtualHost 127.0.0.1
    <VirtualHost 127.0.0.1>
       DocumentRoot /www/sites/site1
       ServerName www10.site.local
          <Location /sites/>
                AuthType Digest
                AuthName MySite
                AuthDigestDomain http://www10.site.local
                AuthDigestProvider file
                AuthUserFile /usr/auth/.digest_pw
                Require valid-user
          </Location>
    </VirtualHost>
    Does anyone know where I am going wrong? I am running the latest version of apache.
Working...