Metadata-Version: 2.0
Name: soloftpd
Version: 0.5.0
Summary: FTP server application.
Home-page: https://github.com/tokibito/soloftpd
Author: Shinya Okano
Author-email: tokibito@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: pyftpdlib

========
soloftpd
========

|build-status|

Config
======

.. code-block:: json

   {
     "address": "127.0.0.1",
     "port": 21,
     "passive-ports": [30000, 50000],
     "masquerade-address": null,
     "username": "spam",
     "password": "egg",
     "directory": "/path/to/user/",
     "permission": "elradfmw"
   }

Command
=======

start server::

   $ soloftpd

using custom config file(default: /etc/soloftpd.conf)::

   $ soloftpd --config=/path/to/soloftpd.conf

override config with command line option::

   $ soloftpd --username=ham --address=10.0.0.1

make password hash::

   $ python -m soloftpd.authorizers your_password

License
=======

* MIT License (See the LICENSE file.)

.. |build-status| image:: https://travis-ci.org/tokibito/soloftpd.svg?branch=master
   :target: https://travis-ci.org/tokibito/soloftpd


