Skip to content

Commit

Permalink
Merge pull request #141 from Paul-Blanchaert/fix-env-var-basicauth
Browse files Browse the repository at this point in the history
Fix basic auth environment variable
  • Loading branch information
epugh authored Feb 20, 2024
2 parents 531b182 + edec26e commit 3668efb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import com.typesafe.sbt.GitBranchPrompt

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

scalaVersion := "2.12.17"
Expand Down
2 changes: 1 addition & 1 deletion conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ smui.auth.clients.SAML2Client {
# The DirectBasicAuthClient configuration which is used *only* when the DirectBasicAuthClient is configured as smui.auth.client
smui.auth.clients.ConfiguredDirectBasicAuthClient {
username = "smui_user"
username = ${?SMUI_BASIC_AUTH_PASS}
username = ${?SMUI_BASIC_AUTH_USER}
password = "smui_pass"
password = ${?SMUI_BASIC_AUTH_PASS}
}
Expand Down

0 comments on commit 3668efb

Please sign in to comment.