Run multiple HTTP servers with different configurations on a single machine
Run multiple HTTP servers with different configurations on a single machine
Minimal resource usage with high performance
Customize each instance with YAML configuration files
# Basic usage with required flags
nanoHttp add -name myserver -web-folder /path/to/files
# Full usage with all options
nanoHttp add -name myserver \
-port 8080 \
-web-folder /path/to/files \
-allow-dir-listing
# Start an instance
nanoHttp start myserver
# Stop an instance
nanoHttp stop myserver
# Delete an instance
nanoHttp delete myserver
# List all instances
nanoHttp list