You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2007/12/18 03:17:42 UTC

svn commit: r605065 - /httpd/mod_ftp/trunk/docs/conf/extra/ftpd.conf

Author: fuankg
Date: Mon Dec 17 18:17:40 2007
New Revision: 605065

URL: http://svn.apache.org/viewvc?rev=605065&view=rev
Log:
quoted directory names as we did with other confs too.

Modified:
    httpd/mod_ftp/trunk/docs/conf/extra/ftpd.conf

Modified: httpd/mod_ftp/trunk/docs/conf/extra/ftpd.conf
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/docs/conf/extra/ftpd.conf?rev=605065&r1=605064&r2=605065&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/docs/conf/extra/ftpd.conf (original)
+++ httpd/mod_ftp/trunk/docs/conf/extra/ftpd.conf Mon Dec 17 18:17:40 2007
@@ -41,12 +41,12 @@
 # For the purposes of logging in, authentication is check within Apache
 # on the root of the file system.  This means that if you want to restrict
 # logins to the FTP server, you will need to configure Authentication for
-# <Directory @exp_ftpdocsdir@>.  See below for examples.
+# <Directory "@exp_ftpdocsdir@">.  See below for examples.
 
 # File based authentication.
 # Must use htpasswd to create the authentication file.
 #
-#<Directory @exp_ftpdocsdir@>
+#<Directory "@exp_ftpdocsdir@">
 #    AuthType basic
 #    AuthUserFile "/tmp/htpasswd.users"
 #    AuthName "FTP Authentication"
@@ -56,7 +56,7 @@
 #
 # Anonymous ftp access.
 #
-#<Directory @exp_ftpdocsdir@>
+#<Directory "@exp_ftpdocsdir@">
 #    AuthName "Use 'anonymous' and email address for guest entry"
 #    AuthType basic
 #
@@ -77,7 +77,7 @@
 #
 # Deny all users from a protected directory.
 # 
-#<Directory @exp_ftpdocsdir@/protected>
+#<Directory "@exp_ftpdocsdir@/protected">
 #    deny from all
 #</Directory>
 
@@ -86,14 +86,14 @@
 #########################################################################
 #
 # Only allow write access to /incoming
-# <Directory @exp_ftpdocsdir@>
+# <Directory "@exp_ftpdocsdir@">
 #     <Limit MKD RMD STOR DELE RNFR>
 #         Order deny,allow
 #         Deny from all
 #     </Limit>
 # </Directory>
 #
-# <Directory @exp_ftpdocsdir@/incoming>
+# <Directory "@exp_ftpdocsdir@/incoming">
 #     <LimitExcept MKD RMD STOR DELE RNFR>
 #         Order deny,allow
 #         Allow from all