You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ng...@apache.org on 2008/07/13 13:52:02 UTC

svn commit: r676305 - in /mina/ftpserver/trunk/distribution/res/conf: ftpd-typical.xml users.properties

Author: ngn
Date: Sun Jul 13 04:52:02 2008
New Revision: 676305

URL: http://svn.apache.org/viewvc?rev=676305&view=rev
Log:
Improve typical configuration

Added:
    mina/ftpserver/trunk/distribution/res/conf/users.properties   (with props)
Modified:
    mina/ftpserver/trunk/distribution/res/conf/ftpd-typical.xml

Modified: mina/ftpserver/trunk/distribution/res/conf/ftpd-typical.xml
URL: http://svn.apache.org/viewvc/mina/ftpserver/trunk/distribution/res/conf/ftpd-typical.xml?rev=676305&r1=676304&r2=676305&view=diff
==============================================================================
--- mina/ftpserver/trunk/distribution/res/conf/ftpd-typical.xml (original)
+++ mina/ftpserver/trunk/distribution/res/conf/ftpd-typical.xml Sun Jul 13 04:52:02 2008
@@ -20,11 +20,7 @@
 	   "
 	id="myServer">
 	<listeners>
-		<nio-listener name="default" port="2121">
-			<ssl>
-				<keystore file="mykeystore.jks" password="secret" />
-			</ssl>
-		</nio-listener>
+		<nio-listener name="default" port="2121" />
 	</listeners>
-	<file-user-manager file="users.properties" />
+	<file-user-manager file="./res/conf/users.properties" />
 </server>
\ No newline at end of file

Added: mina/ftpserver/trunk/distribution/res/conf/users.properties
URL: http://svn.apache.org/viewvc/mina/ftpserver/trunk/distribution/res/conf/users.properties?rev=676305&view=auto
==============================================================================
--- mina/ftpserver/trunk/distribution/res/conf/users.properties (added)
+++ mina/ftpserver/trunk/distribution/res/conf/users.properties Sun Jul 13 04:52:02 2008
@@ -0,0 +1,37 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#  http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# Password is "admin"
+ftpserver.user.admin.userpassword=21232F297A57A5A743894A0E4A801FC3
+ftpserver.user.admin.homedirectory=./res/home
+ftpserver.user.admin.enableflag=true
+ftpserver.user.admin.writepermission=true
+ftpserver.user.admin.maxloginnumber=0
+ftpserver.user.admin.maxloginperip=0
+ftpserver.user.admin.idletime=0
+ftpserver.user.admin.uploadrate=0
+ftpserver.user.admin.downloadrate=0
+
+ftpserver.user.anonymous.userpassword=
+ftpserver.user.anonymous.homedirectory=./res/home
+ftpserver.user.anonymous.enableflag=true
+ftpserver.user.anonymous.writepermission=false
+ftpserver.user.anonymous.maxloginnumber=20
+ftpserver.user.anonymous.maxloginperip=2
+ftpserver.user.anonymous.idletime=300
+ftpserver.user.anonymous.uploadrate=4800
+ftpserver.user.anonymous.downloadrate=4800

Propchange: mina/ftpserver/trunk/distribution/res/conf/users.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain