No description
Find a file
2025-01-02 18:26:53 +01:00
.github/workflows update checkout action to v4 2024-05-17 18:49:41 +02:00
src url encoding changes 2025-01-02 18:26:30 +01:00
.gitignore initial idea commited 2018-07-04 13:57:42 +02:00
Cargo.lock update version 2025-01-02 18:26:53 +01:00
Cargo.toml update version 2025-01-02 18:26:53 +01:00
LICENSE initial idea commited 2018-07-04 13:57:42 +02:00
README.md Update readme 2024-11-07 14:30:50 +01:00

A simple http server like python -m http.server but:

  • written in rust with actix, should be faster
  • allow concurrency
  • fancier directory listing
USAGE:
    http-server [OPTIONS] [PORT]

FLAGS:
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
        --bind <ADDRESS>       Specify alternate bind address [default: 0.0.0.0]
        --chdir <DIRECTORY>    Specify directory to server [default: .]

ARGS:
    <PORT>    Specify alternate port [default: 8000]

Release builds

cargo build --release
strip --strip-unneeded ./target/release/http-server