Author: pebender
Date: Sun Sep 7 16:58:49 2008
New Revision: 3724
Modified:
trunk/gar-minimyth/html/minimyth/document-minimyth_conf.html
Log:
- Improved documentation related to using HTTP for file retrieval.
Modified: trunk/gar-minimyth/html/minimyth/document-minimyth_conf.html
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-minimyth_conf.html
(original)
+++ trunk/gar-minimyth/html/minimyth/document-minimyth_conf.html Sun Sep
7
16:58:49 2008
@@ -158,7 +158,19 @@
configuration file
that makes my TFTP root directory available as a virtual
web host.
</p>
-<pre><VirtualHost 192.168.0.1:80>
+<pre>
+# Load the mod_dav and mod_dav_fs modules needed by the MiniMyth
read-write configuration directory.
+LoadModule dav_module modules/mod_dav.so
+LoadModule dav_fs_module modules/mod_dav_fs.so
+
+# Configure the mod_dav_fs module needed by the MiniMyth read-write
configuration directory.
+<IfModule mod_dav_fs.c>
+ # Location of the WebDAV lock database.
+ DAVLockDB /var/lib/dav/lockdb
+</IfModule>
+
+# Configure a virtual host to serve the TFTP directory.
+<VirtualHost 192.168.0.1:80>
DocumentRoot /var/tftpboot
ServerName tftp.home
ServerAdmin [EMAIL PROTECTED]
@@ -166,7 +178,7 @@
AllowOverride None
</Directory>
<Location />
- # Do not allow access to the TFTP directory execpt where
explicitly granted.
+ # Do not allow access to the TFTP directory except where
explicitly granted.
Order Deny,Allow
Deny from all
Dav Off
@@ -192,9 +204,11 @@
RewriteRule ^(.+)/[^/]+/([^/]+)$ $1/default/$2 [L]
</Location>
<Location /minimyth/conf-rw>
- # Turn on WebDAV sot that MiniMyth can put configuration files.
- # This will not work unless the mod_dav module is enabled and
configured:
- # <a
href="http://httpd.apache.org/docs/2.0/mod/mod_dav.html">http://httpd.apache.org/docs/2.0/mod/mod_dav.html</a>.
+ # Turn on WebDAV so that MiniMyth can put configuration files.
+ # This will not work unless the mod_dav and mod_dav_fs modules are
enabled and configured:
+ # <a
href="http://httpd.apache.org/docs/2.0/mod/mod_dav.html">http://httpd.apache.org/docs/2.0/mod/mod_dav.html</a>
+ # and
+ # <a
href="http://httpd.apache.org/docs/2.0/mod/mod_dav_fs.html">http://httpd.apache.org/docs/2.0/mod/mod_dav_fs.html</a>.
Dav On
FileETag None
<LimitExcept GET PUT>
@@ -2733,7 +2747,7 @@
alt="Valid CSS!" height="31" width="88" /></a>
</div>
<div class="version">
- Last Updated on 2008-07-27
+ Last Updated on 2008-09-07
<br />
< mailto : webmaster at minimyth dot org >
</div>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---