Skip to content

Commit 3668efb

Browse files
authored
Merge pull request #141 from Paul-Blanchaert/fix-env-var-basicauth
Fix basic auth environment variable
2 parents 531b182 + edec26e commit 3668efb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import com.typesafe.sbt.GitBranchPrompt
22

33
name := "search-management-ui"
4-
version := "4.0.7"
4+
version := "4.0.8"
55
maintainer := "Contact productful.io <hello@productful.io>"
66

77
scalaVersion := "2.12.17"

conf/application.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ smui.auth.clients.SAML2Client {
222222
# The DirectBasicAuthClient configuration which is used *only* when the DirectBasicAuthClient is configured as smui.auth.client
223223
smui.auth.clients.ConfiguredDirectBasicAuthClient {
224224
username = "smui_user"
225-
username = ${?SMUI_BASIC_AUTH_PASS}
225+
username = ${?SMUI_BASIC_AUTH_USER}
226226
password = "smui_pass"
227227
password = ${?SMUI_BASIC_AUTH_PASS}
228228
}

0 commit comments

Comments
 (0)