summaryrefslogtreecommitdiff
path: root/doc/taler-config.texi
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-29 13:34:07 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-29 13:34:19 +0200
commit180da005f4d8cf78121dfe765c47de060006e005 (patch)
tree264b7527fb14c73431498f78194d6e87e2bd92e2 /doc/taler-config.texi
parent7b20ee8c8d691c0d79403462411ec66c5ada36c4 (diff)
downloadexchange-180da005f4d8cf78121dfe765c47de060006e005.tar.gz
exchange-180da005f4d8cf78121dfe765c47de060006e005.tar.bz2
exchange-180da005f4d8cf78121dfe765c47de060006e005.zip
move documentation to docs repo
Diffstat (limited to 'doc/taler-config.texi')
-rw-r--r--doc/taler-config.texi47
1 files changed, 0 insertions, 47 deletions
diff --git a/doc/taler-config.texi b/doc/taler-config.texi
deleted file mode 100644
index efca5a2d7..000000000
--- a/doc/taler-config.texi
+++ /dev/null
@@ -1,47 +0,0 @@
-@c This file is used both in the exchange and merchant
-@c manuals. Edits should be propagated to both Gits!
-
-@node Using taler-config
-@section Using taler-config
-@cindex taler-config
-
-The tool @code{taler-config} can be used to
-extract or manipulate configuration values; however, the configuration
-use the well-known INI file format and can also be edited by hand.
-
-Run
-@example
-$ taler-config -s $SECTION
-@end example
-to list all of the configuration values in section @code{$SECTION}.
-
-Run
-@example
-$ taler-config -s $section -o $option
-@end example
-to extract the respective configuration value for option @code{$option}
-in section @code{$section}.
-
-Finally, to change a setting, run
-@example
-$ taler-config -s $section -o $option -V $value
-@end example
-to set the respective configuration value to @code{$value}. Note that you have to
-manually restart the Taler backend after you change the configuration to
-make the new configuration go into effect.
-
-Some default options will use $-variables, such as @code{$DATADIR}
-within their value. To expand the @code{$DATADIR} or other $-variables
-in the configuration, pass the @code{-f} option to
-@code{taler-config}. For example, compare:
-@example
-$ taler-config -s ACCOUNT-bank \
- -o WIRE_RESPONSE
-$ taler-config -f -s ACCOUNT-bank \
- -o WIRE_RESPONSE
-@end example
-
-While the configuration file is typically located at
-@code{$HOME/.config/taler.conf}, an alternative location can be
-specified to @code{taler-merchant-httpd} and @code{taler-config} using
-the @code{-c} option.