www/content/blog/commands/busybox-web-server.md

17 lines
346 B
Markdown
Raw Normal View History

2020-04-28 17:29:52 +02:00
---
title: "Busybox web server"
date: 2019-04-16
description: How to serve static files from only busybox
tags:
- linux
2021-03-12 18:12:41 +01:00
- toolbox
2020-04-28 17:29:52 +02:00
---
## 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 :
2020-04-28 17:29:52 +02:00
```sh
2020-04-28 17:29:52 +02:00
busybox httpd -vfp 80
```