<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.28.2">
</HEAD>
<BODY>
On Sat, 2010-01-30 at 18:13 -0500, greg wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
I have been fighting with this today myself.. I always have problems 
setting up Mythweb.. Here is how I got it working..I am using Ubuntu 
9.10 so I hope it apply s to Debian also...
This will allow anyone on your LAN to access Mythweb,but outsiders can't 
login unless they know your user name and password....

sudo a2enmod
When prompted for what module you want to enable enter:

auth_digest
Create your password directory
sudo mkdir /etc/mythtv/mythweb-digest/passwd


Create your password FILE
sudo htdigest -c /etc/mythtv/mythweb-digest/passwd/passwords MythTV 
(your user name)

Grant permissions to the new password file:

sudo chown www-data /etc/mythtv/mythweb-digest/passwd/passwords

sudo chgrp www-data /etc/mythtv/mythweb-digest/passwd/passwords
sudo chmod 640 /etc/mythtv/mythweb-digest/passwd/passwords

sudo nano /etc/apache2/apache2.conf

&lt;Directory &quot;/var/www/mythweb&quot;&gt;
  Options Indexes FollowSymLinks
  AuthType Digest
  AuthName &quot;MythTV&quot;
  AuthUserFile /etc/mythtv/mythweb-digest/passwd/passwords
  Require valid-user
  Order allow,deny
  Allow from 192.168.1.
  Satisfy any
&lt;/Directory&gt;


sudo /etc/init.d/apache2 restart


_______________________________________________
mythtv-users mailing list
<A HREF="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</A>
<A HREF="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</A>
</PRE>
</BLOCKQUOTE>
<BR>
I had already run all the other stuff. So the below was what got things working. Thank you sir<BR>
<BR>
<BR>
<BLOCKQUOTE TYPE=CITE>
<PRE>
a2enmod

When prompted for what module you want to enable enter:

auth_digest
</PRE>
</BLOCKQUOTE>
</BODY>
</HTML>