blob: 60cc1bebb990c28a6080c95c4df80550a0539a41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
title: "Busybox web server"
date: 2019-04-16
description: How to serve static files from only busybox
tags:
- linux
- toolbox
---
## The command
If you have been using things like `python -m SimpleHTTPServer` to serve static files in a pinch, here is something even more simple and lightweight to use :
{{< highlight sh >}}
busybox httpd -vfp 80
{{< /highlight >}}
|