agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit e6f70722de3ce38897e68f57526ffe6de6f0d22b
parent c3386962426fa6d8ba02939b31266d161589ca11
Author: Johann150 <johann.galle@protonmail.com>
Date:   Thu, 25 Mar 2021 21:42:24 +0100

improve help texts

Diffstat:
Msrc/main.rs | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -98,7 +98,7 @@ fn args() -> Result<Args> { opts.optopt( "", "certs", - "folder for certificate files (default ./.certificates/)", + "Root of the certificate directory (default ./.certificates/)", "DIR", ); opts.optmulti( @@ -110,7 +110,7 @@ fn args() -> Result<Args> { opts.optmulti( "", "hostname", - "Domain name of this Gemini server (default is not checking hostname or port; multiple occurences means basic vhosts)", + "Domain name of this Gemini server, enables checking hostname and port in requests. (multiple occurences means basic vhosts)", "NAME", ); opts.optopt( @@ -120,7 +120,7 @@ fn args() -> Result<Args> { "LANG", ); opts.optflag("s", "silent", "Disable logging output"); - opts.optflag("h", "help", "Print this help menu and exit."); + opts.optflag("h", "help", "Print this help text and exit."); opts.optflag("V", "version", "Print version information and exit."); opts.optflag( "3", @@ -132,11 +132,11 @@ fn args() -> Result<Args> { "serve-secret", "Enable serving secret files (files/directories starting with a dot)", ); - opts.optflag("", "log-ip", "Output IP addresses when logging"); + opts.optflag("", "log-ip", "Output the remote IP address when logging."); opts.optflag( "C", "central-conf", - "Use a central .meta file in the content root directory.", + "Use a central .meta file in the content root directory. Decentral config files will be ignored.", ); let matches = opts.parse(&args[1..]).map_err(|f| f.to_string())?;