Total Pageviews

Sunday 6 March 2022

httpfs, golang编写的静态文件服务器


一个简单的静态文件服务器,支持拖拽上传文件,目的在于解决内网共享文件的问题。

English

安装

// 需要 golang 1.16 以及以上版本
 go install github.com/hellojukay/httpfs@latest
(golang 1.16以下的版本也行:
cd $GOPATH
go get -u -v github.com/hellojukay/httpfs/
在$GOBIN/里面就会生成可执行文件httpfs。

root@racknerd-7b97d8:~# httpfs -h

Usage of httpfs:

  -open

    open with default browser

  -p int

    port to serve on (default 8100)

  -path string

    the directory of static file to host (default "./")

  -version

    print program version

root@racknerd-7b97d8:~# httpfs -path . -p 2345 
在你的本地机器的浏览器里,访问vps-public-ip:2345 )
特性
  • 单文件,免安装,静态编译无依赖
  • 支持Linux,Windows,Mac OSX 等

from https://github.com/hellojukay/httpfs

No comments:

Post a Comment