From 8268d48130d3ed337e622c7e35639144fac5110f Mon Sep 17 00:00:00 2001 From: "K.B.Dharun Krishna" Date: Thu, 15 Feb 2024 12:04:30 +0530 Subject: [PATCH] simplehttpserver: remove mnemonics (#12277) --- pages/common/simplehttpserver.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/simplehttpserver.md b/pages/common/simplehttpserver.md index 65e92f733..ae85d7997 100644 --- a/pages/common/simplehttpserver.md +++ b/pages/common/simplehttpserver.md @@ -4,11 +4,11 @@ > A Go alternative to Python's `http.server`. > More information: . -- Start the HTTP server serving the current directory with [v]erbose output (listen on all interfaces and port 8000 by default): +- Start the HTTP server serving the current directory with verbose output (listen on all interfaces and port 8000 by default): `simplehttpserver -verbose` -- Start the HTTP server with [b]asic authentication serving a specific [p]ath over port 80 on all interfaces: +- Start the HTTP server with basic authentication serving a specific path over port 80 on all interfaces: `sudo simplehttpserver -basic-auth {{username}}:{{password}} -path {{/var/www/html}} -listen 0.0.0.0:80` @@ -16,10 +16,10 @@ `sudo simplehttpserver -https -domain {{*.selfsigned.com}} -listen 0.0.0.0:443` -- Start the HTTP server with custom response [h]eaders and [u]pload capability: +- Start the HTTP server with custom response headers and upload capability: `simplehttpserver -upload -header '{{X-Powered-By: Go}}' -header '{{Server: SimpleHTTPServer}}'` -- Start the HTTP server with customizable [r]ules in YAML (see documentation for DSL): +- Start the HTTP server with customizable rules in YAML (see documentation for DSL): `simplehttpserver -rules {{rules.yaml}}`