23 lines
568 B
Plaintext
23 lines
568 B
Plaintext
# Minimal override - authentication settings only
|
|
# This file is loaded after reference.conf by Typesafe config
|
|
|
|
ditto {
|
|
gateway {
|
|
authentication {
|
|
pre-authentication {
|
|
enabled = true
|
|
}
|
|
devops {
|
|
secured = false
|
|
devops-authentication-method = "basic"
|
|
password = "ditto-devops-secret"
|
|
password = ${?DEVOPS_PASSWORD}
|
|
status-secured = false
|
|
status-authentication-method = "basic"
|
|
statusPassword = "ditto-status-secret"
|
|
statusPassword = ${?STATUS_PASSWORD}
|
|
}
|
|
}
|
|
}
|
|
}
|