public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in www-apache/mod_ftpd/files/0.14-r1: 45_mod_ftpd.conf
@ 2007-09-21 20:35 Benedikt Boehm (hollow)
  0 siblings, 0 replies; 2+ messages in thread
From: Benedikt Boehm (hollow) @ 2007-09-21 20:35 UTC (permalink / raw
  To: gentoo-commits

hollow      07/09/21 20:35:12

  Added:                45_mod_ftpd.conf
  Log:
  fix #192862, cleanup
  (Portage version: 2.1.3.9)

Revision  Changes    Path
1.1                  www-apache/mod_ftpd/files/0.14-r1/45_mod_ftpd.conf

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_ftpd/files/0.14-r1/45_mod_ftpd.conf?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_ftpd/files/0.14-r1/45_mod_ftpd.conf?rev=1.1&content-type=text/plain

Index: 45_mod_ftpd.conf
===================================================================
<IfDefine FTPD>
	LoadModule ftpd_module modules/mod_ftpd.so

	# Load any of the provider modules here (for user specific chroots)
	#LoadModule ftpd_dbm_module modules/mod_ftpd_dbm.so
	#LoadModule ftpd_dbi_module modules/mod_ftpd_dbi.so
	LoadModule ftpd_default_module modules/mod_ftpd_default.so
	#LoadModule ftpd_fail_module modules/mod_ftpd_fail.so

	Listen 21
	<VirtualHost *:21>
		DocumentRoot /home/ftp
		FtpProtocol On
		FtpShowRealPermissions Off
		FtpAllowActive On
		FtpPasvMinPort 1024
		FtpPasvMaxPort 65535
		FtpLimitOrder default
		FtpDefaultMaxLogins 100

		<Directory /home/ftp>
			Anonymous_NoUserID Off
			Anonymous_MustGiveEmail Off
			Anonymous_VerifyEmail Off
			Anonymous_LogEmail Off
			Anonymous anonymous
			AuthName ftp
			AuthType Basic
			Require valid-user
			Order allow,deny
			Allow from all
		</Directory>

		# only allow changing, retrieving files, and listing on the site
		<Location />
			<LimitExcept CHDIR GET LIST>
				Deny from all
			</LimitExcept>
		</Location>

		# allow making directories, listing, chdir, and uploading files.
		# But don't allow retrieving files.
		<Location /upload>
			<LimitExcept LIST PUT MKCOL CHDIR>
				Deny from all
			</LimitExcept>
		</Location>
	</VirtualHost>
</IfDefine>



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in www-apache/mod_ftpd/files/0.14-r1: 45_mod_ftpd.conf
@ 2007-12-31 11:52 Benedikt Boehm (hollow)
  0 siblings, 0 replies; 2+ messages in thread
From: Benedikt Boehm (hollow) @ 2007-12-31 11:52 UTC (permalink / raw
  To: gentoo-commits

hollow      07/12/31 11:52:01

  Modified:             45_mod_ftpd.conf
  Log:
  cleanup
  (Portage version: 2.1.4_rc11)

Revision  Changes    Path
1.2                  www-apache/mod_ftpd/files/0.14-r1/45_mod_ftpd.conf

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_ftpd/files/0.14-r1/45_mod_ftpd.conf?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_ftpd/files/0.14-r1/45_mod_ftpd.conf?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/mod_ftpd/files/0.14-r1/45_mod_ftpd.conf?r1=1.1&r2=1.2

Index: 45_mod_ftpd.conf
===================================================================
RCS file: /var/cvsroot/gentoo-x86/www-apache/mod_ftpd/files/0.14-r1/45_mod_ftpd.conf,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 45_mod_ftpd.conf	21 Sep 2007 20:35:11 -0000	1.1
+++ 45_mod_ftpd.conf	31 Dec 2007 11:52:01 -0000	1.2
@@ -1,49 +1,51 @@
 <IfDefine FTPD>
-	LoadModule ftpd_module modules/mod_ftpd.so
+LoadModule ftpd_module modules/mod_ftpd.so
 
-	# Load any of the provider modules here (for user specific chroots)
-	#LoadModule ftpd_dbm_module modules/mod_ftpd_dbm.so
-	#LoadModule ftpd_dbi_module modules/mod_ftpd_dbi.so
-	LoadModule ftpd_default_module modules/mod_ftpd_default.so
-	#LoadModule ftpd_fail_module modules/mod_ftpd_fail.so
-
-	Listen 21
-	<VirtualHost *:21>
-		DocumentRoot /home/ftp
-		FtpProtocol On
-		FtpShowRealPermissions Off
-		FtpAllowActive On
-		FtpPasvMinPort 1024
-		FtpPasvMaxPort 65535
-		FtpLimitOrder default
-		FtpDefaultMaxLogins 100
-
-		<Directory /home/ftp>
-			Anonymous_NoUserID Off
-			Anonymous_MustGiveEmail Off
-			Anonymous_VerifyEmail Off
-			Anonymous_LogEmail Off
-			Anonymous anonymous
-			AuthName ftp
-			AuthType Basic
-			Require valid-user
-			Order allow,deny
-			Allow from all
-		</Directory>
-
-		# only allow changing, retrieving files, and listing on the site
-		<Location />
-			<LimitExcept CHDIR GET LIST>
-				Deny from all
-			</LimitExcept>
-		</Location>
-
-		# allow making directories, listing, chdir, and uploading files.
-		# But don't allow retrieving files.
-		<Location /upload>
-			<LimitExcept LIST PUT MKCOL CHDIR>
-				Deny from all
-			</LimitExcept>
-		</Location>
-	</VirtualHost>
+# Load any of the provider modules here (for user specific chroots)
+#LoadModule ftpd_dbm_module modules/mod_ftpd_dbm.so
+#LoadModule ftpd_dbi_module modules/mod_ftpd_dbi.so
+LoadModule ftpd_default_module modules/mod_ftpd_default.so
+#LoadModule ftpd_fail_module modules/mod_ftpd_fail.so
+
+Listen 21
+<VirtualHost *:21>
+	DocumentRoot /home/ftp
+	FtpProtocol On
+	FtpShowRealPermissions Off
+	FtpAllowActive On
+	FtpPasvMinPort 1024
+	FtpPasvMaxPort 65535
+	FtpLimitOrder default
+	FtpDefaultMaxLogins 100
+
+	<Directory /home/ftp>
+		Anonymous_NoUserID Off
+		Anonymous_MustGiveEmail Off
+		Anonymous_VerifyEmail Off
+		Anonymous_LogEmail Off
+		Anonymous anonymous
+		AuthName ftp
+		AuthType Basic
+		Require valid-user
+		Order allow,deny
+		Allow from all
+	</Directory>
+
+	# only allow changing, retrieving files, and listing on the site
+	<Location />
+		<LimitExcept CHDIR GET LIST>
+			Deny from all
+		</LimitExcept>
+	</Location>
+
+	# allow making directories, listing, chdir, and uploading files.
+	# But don't allow retrieving files.
+	<Location /upload>
+		<LimitExcept LIST PUT MKCOL CHDIR>
+			Deny from all
+		</LimitExcept>
+	</Location>
+</VirtualHost>
 </IfDefine>
+
+# vim: ts=4 filetype=apache



-- 
gentoo-commits@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-12-31 11:52 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-21 20:35 [gentoo-commits] gentoo-x86 commit in www-apache/mod_ftpd/files/0.14-r1: 45_mod_ftpd.conf Benedikt Boehm (hollow)
  -- strict thread matches above, loose matches on Subject: below --
2007-12-31 11:52 Benedikt Boehm (hollow)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox