• Stars
    star
    2,585
  • Rank 17,737 (Top 0.4 %)
  • Language
    Rust
  • License
    MIT License
  • Created over 7 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple http server in Rust (Windows/Mac/Linux)

How it looks like?

Screenshot

Command Line Arguments

Simple HTTP(s) Server 0.6.3

USAGE:
    simple-http-server [FLAGS] [OPTIONS] [--] [root]

FLAGS:
        --coep       Add "Cross-Origin-Embedder-Policy" HTTP header and set it to "require-corp"
        --coop       Add "Cross-Origin-Opener-Policy" HTTP header and set it to "same-origin"
        --cors       Enable CORS via the "Access-Control-Allow-Origin" header
    -h, --help       Prints help information
    -i, --index      Enable automatic render index page [index.html, index.htm]
        --nocache    Disable http cache
        --norange    Disable header::Range support (partial request)
        --nosort     Disable directory entries sort (by: name, modified, size)
    -s, --silent     Disable all outputs
    -u, --upload     Enable upload files (multiple select) (CSRF token required)
    -V, --version    Prints version information

OPTIONS:
    -a, --auth <auth>                              HTTP Basic Auth (username:password)
        --cert <cert>                              TLS/SSL certificate (pkcs#12 format)
        --certpass <certpass>                      TLS/SSL certificate password
    -c, --compress <compress>...
            Enable file compression: gzip/deflate
                Example: -c=js,d.ts
                Note: disabled on partial request!
        --ip <ip>                                  IP address to bind [default: 0.0.0.0]
    -p, --port <port>                              Port number [default: 8000]
        --redirect <redirect>                      takes a URL to redirect to using HTTP 301 Moved Permanently
    -t, --threads <threads>                        How many worker threads [default: 3]
        --try-file <PATH>
            serve this file (server root relative) in place of missing files (useful for single page apps) [aliases:
            try-file-404]
    -l, --upload-size-limit <upload_size_limit>    Upload file size limit [bytes] [default: 8000000]


Installation

Download binary

Goto Download

  • windows-64bit
  • osx-64bit
  • linux-64bit

Install by cargo

# Install Rust
curl https://sh.rustup.rs -sSf | sh

# Install simple-http-server
cargo install simple-http-server
rehash
simple-http-server -h

Features

  • Windows support (with colored log)
  • Specify listen address (ip, port)
  • Specify running threads
  • Specify root directory
  • Pretty log
  • Nginx like directory view (directory entries, link, filesize, modfiled date)
  • Breadcrumb navigation
  • (default enabled) Guess mime type
  • (default enabled) HTTP cache control
    • Sending Last-Modified / ETag
    • Replying 304 to If-Modified-Since
  • (default enabled) Partial request
    • Accept-Ranges: bytes([ByteRangeSpec; length=1])
    • [Range, If-Range, If-Match] => [Content-Range, 206, 416]
  • (default disabled) Automatic render index page [index.html, index.htm]
  • (default disabled) Upload file
    • A CSRF token is generated when upload is enabled and must be sent as a parameter when uploading a file
  • (default disabled) HTTP Basic Authentication (by username:password)
  • Sort by: filename, filesize, modifled
  • HTTPS support
  • Content-Encoding: gzip/deflate
  • Added CORS headers support
  • Silent mode

More Repositories

1

python-chat

模仿QQ (基于Gevent+Websocket)
Python
47
star
2

react-neon-ssr

React neon(Rust) powered server side renderer
Rust
19
star
3

bobby-carrot

Game Bobby Carrot in Rust/Haxe/Zig
Zig
18
star
4

mqtt-zig

Allocation free MQTT v3.1/v3.1.1/v5.0 packet codec in Zig
Zig
9
star
5

job-hunter

一个简单的招聘网站(毕业设计)
JavaScript
7
star
6

ahorn-table

针对后台管理基于AngularJS+Flask+SQLAlchemy的展现表数据的库 + 示例集合
Python
7
star
7

zio

Zig io from tigerbeetle/src/io
Zig
7
star
8

bucket-limiter-py

Token bucket like limiter library based on redis storage (Python version)
Python
5
star
9

bucket-limiter-rs

Token bucket like limiter library based on redis storage (Rust version)
Rust
5
star
10

merkle-tree-c

Complete Binary Merkle Tree pure C implementation. https://github.com/nervosnetwork/merkle-tree
C
4
star
11

wechat-sdk

WeChat SDK for Rust (wechatpy like API) [WIP]
Rust
3
star
12

nat

Rust NAT traversal
Rust
3
star
13

ens-polyjuice

Run ENS on polyjuice
Python
3
star
14

bitcoin-network

A toy project to port bitcoin network to Rust
Rust
2
star
15

react-dom-server-rs

React DOM server in Rust
Rust
2
star
16

flask-redlock

Redis lock flask extension
Python
2
star
17

mqtt-bench.zig

MQTT benchmark tool in Zig
Zig
2
star
18

ckb-mainnet-genesis-generator

CKB mainnet genesis generator
Rust
1
star
19

myway

My Projects [Blog, Gallery, Project....]
JavaScript
1
star
20

discovery

Node discovery (mainly same with bitcoin, for blockchain project)
Rust
1
star
21

SharedTalk-Golang

SharedTalk.com copy by Golang
Go
1
star
22

new-conkeror

Extended conkeror browser.
JavaScript
1
star
23

razor

Zig run in ckb-vm
Zig
1
star