Skip to content
Snippets Groups Projects
Commit cc5da7ed authored by Daniel's avatar Daniel
Browse files

DOC: Set the recommended password method to `input` in example ini.

parent d9f25c99
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment