# HG changeset patch # User Bernhard Reiter # Date 1554215823 -7200 # Node ID da1d063ee0854cc1f83abb088ff7ea491b806a77 # Parent 2097c3633f0a2c89e6b80d804bb067dd8aff4476 improve cmd/gemma/gemma --help * In the help text change `web-port` and `web-host` to `port` and `host` because this is what the parameters are called. diff -r 2097c3633f0a -r da1d063ee085 pkg/config/config.go --- a/pkg/config/config.go Tue Apr 02 14:52:38 2019 +0200 +++ b/pkg/config/config.go Tue Apr 02 16:37:03 2019 +0200 @@ -4,7 +4,7 @@ // SPDX-License-Identifier: AGPL-3.0-or-later // License-Filename: LICENSES/AGPL-3.0.txt // -// Copyright (C) 2018 by via donau +// Copyright (C) 2018, 2019 by via donau // – Österreichische Wasserstraßen-Gesellschaft mbH // Software engineering by Intevation GmbH // @@ -260,10 +260,10 @@ str("proxy-key", "", "signing key for proxy URLs.\n"+ "Defaults to random key.") str("proxy-prefix", "", "URL prefix of proxy.\n"+ - "Defaults to 'http://${web-host}:${web-port}'") + "Defaults to 'http://${host}:${port}'") str("external-url", "", "URL to find the server from the outside.\n"+ - "Defaults to 'http://${web-host}:${web-port}'") + "Defaults to 'http://${host}:${port}'") str("tmp-dir", "", "Temp directory of gemma server.\n"+ "Defaults to system temp directory.")