gohttpserver
![Build Status](https://travis-ci.org/codeskyblue/gohttpserver.svg?branch=master)
Make the best HTTP File Server. Better UI, upload support, apple&android install package qrcode generate.
Demo site
- 目标: 做最好的HTTP文件服务器
- 功能: 人性化的UI体验,文件的上传支持,安卓和苹果安装包的二维码直接生成。
Binary can be download from github releases
Notes
If using go1.5, ensure you set GO15VENDOREXPERIMENT=1
Upload size now limited to 1G
Screenshots
![screen](https://github.com/ideamean/gohttpserver/raw/a7c6d06479f9/screenshot.png)
Features
- Support QRCode code generate
- Breadcrumb path quick change
- All assets package to Standalone binary
- Different file type different icon
- Support show or hide hidden files
- Upload support (for security reason, you need enabled it by option
--upload
)
- README.md preview
- HTTP Basic Auth
- Partial reload pages when directory change
- When only one dir under dir, path will combine two together
- Directory zip download
- Apple ipa auto generate .plist file, qrcode can be recognized by iphone (Require https)
- Plist proxy
- Download count statistics
- CORS enabled
- Offline download
- Code file preview
- Edit file support
- Global file search
- Hidden work
download
and qrcode
in small screen
- Theme select support
- OK to working behide Nginx
- .htaccess support
- Calculate md5sum and sha
- Folder upload
- Support sort by size or modified time
- Add version info into index page
- Add api
/-/info/some.(apk|ipa)
to get detail info
- Auto tag version
- Custom title support
Installation
go get -v github.com/codeskyblue/gohttpserver
cd $GOPATH/src/github.com/codeskyblue/gohttpserver
go build && ./gohttpserver
Usage
Listen port 8000 on all interface, and enable upload
./gohttpserver -r ./ --addr :8000 --upload
ipa plist proxy
This is used for server which not https enabled. default use https://plistproxy.herokuapp.com/plist
./gohttpserver --plistproxy=https://someproxyhost.com/
Proxy web site should have ability
$ http POST https://proxyhost.com/plist < app.plist
{
"key": "18f99211"
}
$ http GET https://proxyhost.com/plist/18f99211
# show the app.plist content
Upload with CURL
For example, upload a file named foo.txt
to directory somedir
PS: max upload size limited to 1G (hard coded)
$ curl -F file=@foo.txt localhost:8000/somedir
FAQ
How the search works
The search algorithm follow the search engine google. keywords are seperated with space, words with prefix -
will be excluded.
hello world
means must contains hello
and world
hello -world
means must contains hello
but not contains world
Developer Guide
Depdencies are managed by godep
go get -v github.com/tools/godep
go get github.com/jteeuwen/go-bindata/...
go get github.com/elazarl/go-bindata-assetfs/...
Theme are all defined in res/themes directory. Now only two, black and green.
How to build single binary release
go-bindata-assetfs -tags bindata res/...
go build -tags bindata
That's all. ^_^
Reference Web sites
History
The first version is https://github.com/codeskyblue/gohttp
LICENSE
This project is under license MIT