No description
Find a file
2024-03-24 17:29:29 +01:00
.github/workflows Fixes 2021-04-22 22:03:18 +02:00
src Fixed problem when serving parent directories. 2024-03-24 17:29:29 +01:00
.gitignore Changed default address to 0.0.0.0; formatted startup info message. 2020-09-11 17:42:55 +02:00
build Fixed problem when serving parent directories. 2024-03-24 17:29:29 +01:00
description Added description 2023-08-11 02:15:24 +00:00
LICENSE Revise app to be dual-stack IPv4+IPv6 2023-01-15 18:23:52 -08:00
nimhttpd.nimble Fixed deprecation warning. 2023-04-22 13:28:16 +00:00
README.md Revise app to be dual-stack IPv4+IPv6 2023-01-15 18:23:52 -08:00

Nimble

Release License

NimHTTPd

NimHTTPd is a minimal web server that can be used to serve static files.

Usage

nimhttpd [ -p:port -t:title -a:address -6:ipv6 -H:"key: val" ] [ directory ]

Where:

  • directory is the directory to serve (default: current directory).
  • port is the port to listen to (default: 1337). If the specified port is unavailable, the number will be incremented until an available port is found.
  • address is the address to bind to (default: localhost; use "0.0.0.0" to accept any IPv4 address).
  • ipv6 is the IPv6 address to bind to (default: localhost; use "::" to accept any IPv6 address).
  • title is the title to use when listing the contents of a directory.
  • -H is a custom header (Specified like in curl)