miniserve/README.md

188 lines
6.9 KiB
Markdown
Raw Normal View History

2020-09-24 01:15:25 +00:00
<p align="center">
<img src="data/logo.svg" alt="miniserve - a CLI tool to serve files and dirs over HTTP"><br>
</p>
2018-05-17 13:37:26 +00:00
# miniserve - a CLI tool to serve files and dirs over HTTP
2018-04-26 17:44:30 +00:00
[![CI](https://github.com/svenstaro/miniserve/workflows/CI/badge.svg)](https://github.com/svenstaro/miniserve/actions)
2019-09-12 11:40:29 +00:00
[![Docker Cloud Build Status](https://img.shields.io/docker/cloud/build/svenstaro/miniserve)](https://cloud.docker.com/repository/docker/svenstaro/miniserve/)
2018-04-26 17:32:25 +00:00
[![AUR](https://img.shields.io/aur/version/miniserve.svg)](https://aur.archlinux.org/packages/miniserve/)
[![Crates.io](https://img.shields.io/crates/v/miniserve.svg)](https://crates.io/crates/miniserve)
[![license](http://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/svenstaro/miniserve/blob/master/LICENSE)
2019-02-15 19:34:16 +00:00
[![Stars](https://img.shields.io/github/stars/svenstaro/miniserve.svg)](https://github.com/svenstaro/miniserve/stargazers)
[![Downloads](https://img.shields.io/github/downloads/svenstaro/miniserve/total.svg)](https://github.com/svenstaro/miniserve/releases)
2020-07-04 02:57:28 +00:00
[![Lines of Code](https://tokei.rs/b1/github/svenstaro/miniserve)](https://github.com/svenstaro/miniserve)
2018-04-26 17:32:25 +00:00
2018-12-25 14:46:59 +00:00
**For when you really just want to serve some files over HTTP right now!**
2018-05-16 13:07:49 +00:00
**miniserve** is a small, self-contained cross-platform CLI tool that allows you to just grab the binary and serve some file(s) via HTTP.
2018-05-16 12:44:25 +00:00
Sometimes this is just a more practical and quick way than doing things properly.
2019-04-10 12:58:29 +00:00
## Screenshot
2019-04-10 12:57:18 +00:00
![Screenshot](screenshot.png)
2018-05-16 11:55:28 +00:00
## How to use
### Serve a directory:
miniserve linux-distro-collection/
### Serve a single file:
miniserve linux-distro.iso
### Require username/password:
miniserve --auth joe:123 unreleased-linux-distros/
2019-02-03 11:03:20 +00:00
### Generate random 6-hexdigit URL:
miniserve -i 192.168.0.1 --random-route /tmp
2019-02-03 11:03:20 +00:00
# Serving path /private/tmp at http://192.168.0.1/c789b6
### Bind to multiple interfaces:
2019-02-16 12:06:22 +00:00
miniserve -i 192.168.0.1 -i 10.13.37.10 -i ::1 /tmp/myshare
2018-05-16 11:55:28 +00:00
## Features
- Easy to use
- Just works: Correct MIME types handling out of the box
2018-05-16 13:08:11 +00:00
- Single binary drop-in with no extra dependencies required
- Authentication support with username and password (and hashed password)
2018-05-16 11:55:28 +00:00
- Mega fast and highly parallel (thanks to [Rust](https://www.rust-lang.org/) and [Actix](https://actix.rs/))
2020-05-15 07:26:35 +00:00
- Folder download (compressed on the fly as `.tar.gz` or `.zip`)
2019-04-04 08:56:04 +00:00
- File uploading
2019-06-28 12:48:57 +00:00
- Pretty themes
- Scan QR code for quick access
2019-03-19 20:00:14 +00:00
2020-07-20 22:11:16 +00:00
## Usage
2020-09-25 00:35:16 +00:00
miniserve 0.9.1-alpha.0
2020-07-20 22:11:16 +00:00
Sven-Hendrik Haase <svenstaro@gmail.com>, Boastful Squirrel <boastful.squirrel@gmail.com>
For when you really just want to serve some files over HTTP right now!
USAGE:
miniserve [FLAGS] [OPTIONS] [--] [PATH]
FLAGS:
-r, --enable-tar
Enable tar archive generation
-z, --enable-zip
Enable zip archive generation
WARNING: Zipping large directories can result in out-of-memory exception because zip generation is done in
memory and cannot be sent on the fly
-u, --upload-files
Enable file uploading
-h, --help
Prints help information
-P, --no-symlinks
Do not follow symbolic links
-o, --overwrite-files
Enable overriding existing files during file upload
-q, --qrcode
Enable QR code display
--random-route
Generate a random 6-hexdigit route
-V, --version
Prints version information
-v, --verbose
Be verbose, includes emitting access logs
OPTIONS:
-a, --auth <auth>...
Set authentication. Currently supported formats: username:password, username:sha256:hash,
username:sha512:hash (e.g. joe:123,
joe:sha256:a665a45920422f9d417e4867efdc4fb8a04a1f3fff1fa07e998e86f7f7a27ae3)
-c, --color-scheme <color-scheme>
Default color scheme [default: squirrel] [possible values: squirrel, archlinux, zenburn, monokai]
-d, --color-scheme-dark <color-scheme-dark>
Default color scheme [default: archlinux] [possible values: squirrel, archlinux, zenburn, monokai]
2020-07-20 22:11:16 +00:00
--index <index_file>
The name of a directory index file to serve, like "index.html"
Normally, when miniserve serves a directory, it creates a listing for that directory. However, if a
directory contains this file, miniserve will serve that file instead.
-i, --interfaces <interfaces>...
Interface to listen on
-p, --port <port>
Port to use [default: 8080]
2020-09-25 00:35:16 +00:00
-t, --title <title>
Shown instead of host in page title and heading
2020-07-20 22:11:16 +00:00
ARGS:
<PATH>
Which path to serve
2018-05-16 11:55:28 +00:00
## How to install
2020-04-19 08:19:35 +00:00
<a href="https://repology.org/project/miniserve/versions"><img align="right" src="https://repology.org/badge/vertical-allrepos/miniserve.svg" alt="Packaging status"></a>
2018-05-16 11:55:28 +00:00
**On Linux**: Download `miniserve-linux` from [the releases page](https://github.com/svenstaro/miniserve/releases) and run
chmod +x miniserve-linux
./miniserve-linux
**On OSX**: Download `miniserve-osx` from [the releases page](https://github.com/svenstaro/miniserve/releases) and run
chmod +x miniserve-osx
./miniserve-osx
2019-10-21 10:28:17 +00:00
Alternatively install with [Homebrew](https://brew.sh/).
brew install miniserve
miniserve
2018-05-16 12:44:25 +00:00
**On Windows**: Download `miniserve-win.exe` from [the releases page](https://github.com/svenstaro/miniserve/releases) and run
miniserve-win.exe
2018-05-16 11:55:28 +00:00
2019-02-23 10:06:19 +00:00
**With Cargo**: You will need the _nightly_ version of Rust to compile the project. Then you can run
2018-05-16 11:55:28 +00:00
cargo install miniserve
miniserve
2019-02-15 15:46:11 +00:00
**With Docker:** If you prefer using Docker for this, run
docker run -v /tmp:/tmp -p 8080:8080 --rm -it svenstaro/miniserve /tmp
## Binding behavior
For convenience reasons, miniserve will try to bind on all interfaces by default (if no `-i` is provided).
It will also do that if explicitly provided with `-i 0.0.0.0` or `-i ::`.
In all of the aforementioned cases, it will bind on both IPv4 and IPv6.
If provided with an explicit non-default interface, it will ONLY bind to that interface.
You can provide `-i` multiple times to bind to multiple interfaces at the same time.
2018-05-16 13:08:38 +00:00
## Why use this over alternatives?
2018-05-16 11:55:28 +00:00
2018-05-16 12:44:25 +00:00
- darkhttpd: Not easily available on Windows and it's not as easy as download and go.
- Python built-in webserver: Need to have Python installed, it's low performance, and also doesn't do correct MIME type handling in some cases.
2018-05-17 13:59:10 +00:00
- netcat: Not as convenient to use and sending directories is [somewhat involved](https://nakkaya.com/2009/04/15/using-netcat-for-file-transfers/).
2018-06-07 21:41:40 +00:00
## Releasing
This is mostly a note for me on how to release this thing:
2020-07-20 21:43:26 +00:00
- `cargo release --dry-run`
- `cargo release`
- Releases will automatically be deployed by Github Actions.
- Docker images will automatically be built by Docker Hub.
2018-06-07 21:41:40 +00:00
- Update AUR package.