有时候需要一个微型的 http 服务器用作文件分享和 html 文件预览,之前一直用 python3 里面的 http.server,但这个不支持分段,大文件经常出错,请问有什么推荐?
nginx 吧,简单好用
nginx +1
Nginx+1
caddy 试试?
golang 的 net/http 库,我用它写了个局域网内看视频的服务,感觉性能和 nginx 差不多,但更灵活
caddy lighttpd 都算是微型吧
darkhttpd
我选它,关键在于它基本没有对第三方库的依赖,而且编译后不到 50k,稳定性也非常好,反正我是从来没遇到过大文件出错的。
nginx 太大了吧。。配置有点复杂,开关有点麻烦,个人感觉不是很适合简单的使用
那还得装个语言。。
lighttpd,apt 就有。
用 go 编译后的那个二进制文件就好了。
https://github.com/zjsxwc/genhtml
server {
listen 8080;
root /tmp;
}
nginx 四行搞定啊
ningx 开 autoindex
busybox httpd
php -S localhost:8000
python -m SimpleHTTPServer
openresty
大神 可有代码分享
nginx 说不定比 python 还内存占用小
nginx 简单静态站,超过 3M 内存算我输