{"id":22478144,"url":"https://github.com/phantomydn/jvfsftpd","last_synced_at":"2025-03-27T17:47:31.052Z","repository":{"id":14771195,"uuid":"17492749","full_name":"PhantomYdn/jvfsftpd","owner":"PhantomYdn","description":"Advanced FTP server on jave. Supports Virtual File Systems ","archived":false,"fork":false,"pushed_at":"2014-03-07T01:00:05.000Z","size":164,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-01T21:12:52.452Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"pelias/openaddresses","license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PhantomYdn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-03-06T21:09:01.000Z","updated_at":"2014-03-07T01:00:06.000Z","dependencies_parsed_at":"2022-09-23T23:00:23.003Z","dependency_job_id":null,"html_url":"https://github.com/PhantomYdn/jvfsftpd","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PhantomYdn%2Fjvfsftpd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PhantomYdn%2Fjvfsftpd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PhantomYdn%2Fjvfsftpd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PhantomYdn%2Fjvfsftpd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PhantomYdn","download_url":"https://codeload.github.com/PhantomYdn/jvfsftpd/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245898114,"owners_count":20690459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-06T14:13:30.036Z","updated_at":"2025-03-27T17:47:31.014Z","avatar_url":"https://github.com/PhantomYdn.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"jvfsftpd\n========\n\nJVFSFTPd is highly pluggable FTP server based on jakarta VFS project and JAAS writen on JAVA language . JVFSFTPd may be configured whatever you wish.\n\nCopy of SF.NET project. Updates for this projects will be hosted only on GitHub\n\nExample of ftpd.xml configuration file:\n\n```xml\n\u003cftpd\u003e\n\t\u003c!-- Starts FTP server on all interfaces--\u003e\n\t\u003cbind\u003e127.0.0.1\u003c/bind\u003e\n\t\u003c!-- Starts FTP server on 21 tcp port--\u003e\n\t\u003cport\u003e21\u003c/port\u003e\n\t\u003c!-- Uncomment if you wish to use JAAS as autorisation service--\u003e\n\t\u003c!--\u003csecurity-domain\u003eother\u003c/security-domain\u003e--\u003e\n\t\u003c!-- True - if set of 'user' elements defines userspace. In this case new JAAS configuration defined.--\u003e\n\t\u003cuse-users\u003etrue\u003c/use-users\u003e\n\t\u003c!-- Let's define default configuration for FTP server--\u003e\n\t\u003cdefault\u003e\n\t\t\u003c!-- Base dir in this example is C:/ --\u003e\n\t\t\u003cbasedir\u003ec:/\u003c/basedir\u003e\n\t\t\u003c!-- Initialy user will be placed in C:/windows directory--\u003e\n\t\t\u003cinitialdir\u003ec:/windows\u003c/initialdir\u003e\n\t\t\u003c!-- Bandwidth configuration --\u003e\n\t\t\u003cbandwidth\u003e\n\t\t      \u003c!-- Limits input rate by 10000 bytes per second--\u003e\n\t\t\t\u003cinput\u003e10000\u003c/input\u003e\n\t\t\t\u003c!-- Limits output rate by 10000 bytes per second--\u003e\n\t\t\t\u003coutput\u003e10000\u003c/output\u003e\n\t\t\u003c/bandwidth\u003e\n\t\u003c/default\u003e\n\t\u003c!-- Defines user with name 'jvfsftpd' and password '123'--\u003e\n\t\u003cuser name=\"jvfsftpd\" password=\"123\"\u003e\n\t\t\u003c!-- Base dir for user jvfsftpd will be c:/ --\u003e\n\t\t\u003cbasedir\u003ec:/\u003c/basedir\u003e\n\t\t\u003c!-- Initial dir for user jvfsftpd will be c:/Program Files--\u003e\n\t\t\u003cinitialdir\u003ec:/Program Files\u003c/initialdir\u003e\n\t\t\u003c!-- Bandwidth configuration for user jvfsftpd --\u003e\n\t\t\u003cbandwidth\u003e\n\t\t\t\u003c!-- Limits input rate for user jvfsftpd by 20000 bytes per second--\u003e\n\t\t\t\u003cinput\u003e100000\u003c/input\u003e\n\t\t\t\u003c!-- Limits output rate for user jvfsftpd by 20000 bytes per second--\u003e\n\t\t\t\u003coutput\u003e100000\u003c/output\u003e\n\t\t\u003c/bandwidth\u003e\n\t\u003c/user\u003e\n\u003c/ftpd\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphantomydn%2Fjvfsftpd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphantomydn%2Fjvfsftpd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphantomydn%2Fjvfsftpd/lists"}