aboutsummaryrefslogtreecommitdiff
path: root/content/blog/commands/busybox-web-server.md
blob: 666fb8ea62851dc50cb6653c0c262b6c14346f57 (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
  - simple utilities
---

## 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 >}}