mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 02:46:53 +00:00
22 lines
625 B
Plaintext
22 lines
625 B
Plaintext
auth {
|
|
# Fixed users login credentials
|
|
# No other user will be able to login
|
|
# Note: password may be bcrypt-hashed (generate using `python3 -c 'import bcrypt,base64; print(base64.b64encode(bcrypt.hashpw("password".encode(), bcrypt.gensalt())))'`)
|
|
fixed_users {
|
|
enabled: true
|
|
pass_hashed: false
|
|
users: [
|
|
{
|
|
username: "jane"
|
|
password: "12345678"
|
|
name: "Jane Doe"
|
|
},
|
|
{
|
|
username: "john"
|
|
password: "12345678"
|
|
name: "John Doe"
|
|
},
|
|
]
|
|
}
|
|
}
|