conf.config.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ftpserver-spring-boot-starter Show documentation
Show all versions of ftpserver-spring-boot-starter Show documentation
An apache ftp server starter for spring boot.
<?xml version="1.0" encoding="UTF-8"?> <!-- 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. --> <!--The Apache FtpServer Configuration, see http://mina.apache.org/ftpserver-project/documentation.html--> <server xmlns="http://mina.apache.org/ftpserver/spring/v1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://mina.apache.org/ftpserver/spring/v1 http://mina.apache.org/ftpserver/ftpserver-1.0.xsd" id="myServer" max-threads="16" max-logins="100" max-anon-logins="100" anon-enabled="true" max-login-failures="3" login-failure-delay="10000"> <listeners> <nio-listener name="default" port="2222" local-address="" implicit-ssl="true" idle-timeout="60"> <ssl protocol="TLS" client-authentication="NONE" enabled-ciphersuites=""> <keystore file="ftpserver.jks" password="123456" key-password="123456" key-alias="ftpserver" type="JKS" algorithm="SunX509"/> <truststore file="truststore.jks" password="123456" type="JKS" algorithm="SunX509"/> </ssl> <data-connection idle-timeout="60"> <active enabled="true" local-address="" local-port="" ip-check="false"/> <passive ports="" address="" external-address=""/> </data-connection> <blacklist>1.2.3.0/16, 1.2.4.0/16, 1.2.3.4</blacklist> </nio-listener> </listeners> <listeners> <nio-listener name="default" port="21"/> </listeners> <file-user-manager file="users.properties" encrypt-passwords="md5"/> </server>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy