aboutsummaryrefslogtreecommitdiff
path: root/content/blog/commands/busybox-web-server.md
blob: 14470fadf5985db873011d2bffb44c1d434caf27 (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 :

```sh
busybox httpd -vfp 80
```