From cc5da7ed2dcdef88f2e09d9e325e4aeb7a8c09ad Mon Sep 17 00:00:00 2001 From: Daniel <daniel@harvey> Date: Tue, 6 Aug 2019 17:10:34 +0200 Subject: [PATCH] DOC: Set the recommended password method to `input` in example ini. --- examples/pycaosdb.ini | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/examples/pycaosdb.ini b/examples/pycaosdb.ini index 09f03b42..625a3878 100644 --- a/examples/pycaosdb.ini +++ b/examples/pycaosdb.ini @@ -4,10 +4,13 @@ # - the location given in the env variable PYCAOSDBINI [Connection] -cacert=/path/to/caosdb.ca.pem -url=https://localhost:10443/ +url=https://demo.indiscale.com/ -## If this option is set, the SSL certtificate will be ignored. Use with care! +## For local installations, enter your server address and SSL certificate here. +# url=https://localhost:10443/ +# cacert=/path/to/caosdb.ca.pem + +## If this option is set, the SSL certificate will be ignored. Use with care! # ssl_insecure=1 username=admin @@ -15,13 +18,14 @@ username=admin ## The password input method can be chosen with the `password_method` setting, ## which by default is set to `plain`. ## -## DEFAULT: the password method is `plain`, now the password must be saved as -## plain text. -password_method=plain -password=caosdb +## DEFAULT: the password method is `plain`, with this method the password must +## be saved as plain text. +# password_method=plain +# password=caosdb -## OR: `input`: username is optional, password is entered by the user directly -# password_method=input +## OR: `input`: username is optional, password is entered directly by the user. +## The default password for the demo server is `caosdb`. +password_method=input ## OR: `pass`: password is retrieved from the "pass" password manager # password_method=pass -- GitLab