https://github.com/lukad/sfs
A simple http file server - I use it when I can't use more approriate protocols for file transfer due to restrictive networks
https://github.com/lukad/sfs
Last synced: 2 months ago
JSON representation
A simple http file server - I use it when I can't use more approriate protocols for file transfer due to restrictive networks
- Host: GitHub
- URL: https://github.com/lukad/sfs
- Owner: lukad
- License: gpl-3.0
- Created: 2013-03-13T22:20:44.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-24T09:20:48.000Z (almost 11 years ago)
- Last Synced: 2025-02-08T03:11:19.516Z (3 months ago)
- Language: Go
- Homepage:
- Size: 168 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Simple File Server
==================## Installation
$ go get -u github.com/lukad/sfs
## Usage
$ sfs --help
Usage: sfs [options]
Where options are:
-d, --digest=false: Use digest access authentication
-l, --listen=":8080": Listen address
--log=true: Log to stdout
-n, --no-color=false: Don't log with colors
-p, --password="": Password for authentication
-r, --root="./": Root directory for the file server
-u, --user="": Username for authentication$ sfs -d -ufoo -pbar -r/home/foo/baz/
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Added some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request