mirror of
https://github.com/clearml/clearml-server
synced 2025-01-31 19:06:55 +00:00
20 lines
423 B
Plaintext
20 lines
423 B
Plaintext
|
auth {
|
||
|
# Fixed users login credetials
|
||
|
# No other user will be able to login
|
||
|
fixed_users {
|
||
|
enabled: true
|
||
|
users: [
|
||
|
{
|
||
|
username: "jane"
|
||
|
password: "12345678"
|
||
|
name: "Jane Doe"
|
||
|
},
|
||
|
{
|
||
|
username: "john"
|
||
|
password: "12345678"
|
||
|
name: "John Doe"
|
||
|
},
|
||
|
]
|
||
|
}
|
||
|
}
|