I am trying to set up DomJudge with Apache on an Ubuntu server and have the following config included in my httpd.conf
# Require authentication to jury webinterface
<Directory /home/domjudge/domjudge/domserver/www/jury>
Options Indexes Includes FollowSymLinks
AuthType Basic
AuthName "DOMjudge Jury Interface Login"
Require valid-user
AuthUserFile /home/domjudge/domjudge/domserver/etc/htpasswd-jury
AllowOverride None
# Optionally restrict access to just the jury computers:
allow from all
# allow from 192.168.1.0/24
And the htpasswd file is as follows:
-rw-r--r-- 1 domjudge www-data 46 2012-04-18 17:14 htpasswd-jury
And contains
domjudge_jury:OS7*SNIP*T20
Pezmc:Password
I restart Apache, when I go to that address I am prompted with a login this server requires a username and a password
...the server says DOMjudge Jury Interface Login
but even if I enter the passwords as above the prompt simply comes up again.
What is going on? Have I missed something?
Thanks for your time,