Metadata-Version: 2.0
Name: soloftpd
Version: 0.3
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
========

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

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

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

make password hash::

   $ python -m soloftpd.authorizers your_password

License
=======

* MIT License (See the LICENSE file.)


