16 lines
376 B
Markdown
16 lines
376 B
Markdown
---
|
|
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 >}}
|