Giter Club home page Giter Club logo

jvfsftpd's Introduction

jvfsftpd

JVFSFTPd is highly pluggable FTP server based on jakarta VFS project and JAAS writen on JAVA language . JVFSFTPd may be configured whatever you wish.

Copy of SF.NET project. Updates for this projects will be hosted only on GitHub

Example of ftpd.xml configuration file:

<ftpd>
	<!-- Starts FTP server on all interfaces-->
	<bind>127.0.0.1</bind>
	<!-- Starts FTP server on 21 tcp port-->
	<port>21</port>
	<!-- Uncomment if you wish to use JAAS as autorisation service-->
	<!--<security-domain>other</security-domain>-->
	<!-- True - if set of 'user' elements defines userspace. In this case new JAAS configuration defined.-->
	<use-users>true</use-users>
	<!-- Let's define default configuration for FTP server-->
	<default>
		<!-- Base dir in this example is C:/ -->
		<basedir>c:/</basedir>
		<!-- Initialy user will be placed in C:/windows directory-->
		<initialdir>c:/windows</initialdir>
		<!-- Bandwidth configuration -->
		<bandwidth>
		      <!-- Limits input rate by 10000 bytes per second-->
			<input>10000</input>
			<!-- Limits output rate by 10000 bytes per second-->
			<output>10000</output>
		</bandwidth>
	</default>
	<!-- Defines user with name 'jvfsftpd' and password '123'-->
	<user name="jvfsftpd" password="123">
		<!-- Base dir for user jvfsftpd will be c:/ -->
		<basedir>c:/</basedir>
		<!-- Initial dir for user jvfsftpd will be c:/Program Files-->
		<initialdir>c:/Program Files</initialdir>
		<!-- Bandwidth configuration for user jvfsftpd -->
		<bandwidth>
			<!-- Limits input rate for user jvfsftpd by 20000 bytes per second-->
			<input>100000</input>
			<!-- Limits output rate for user jvfsftpd by 20000 bytes per second-->
			<output>100000</output>
		</bandwidth>
	</user>
</ftpd>

jvfsftpd's People

Contributors

phantomydn avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.