Skip to content

Commit

Permalink
Merge pull request #51 from hmrc/AIV-238
Browse files Browse the repository at this point in the history
AIV-238: https in application.conf
  • Loading branch information
peteanning authored Sep 14, 2018
2 parents 76f4398 + 219ae5f commit 6a0d03d
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,8 @@ Prod {
consumer {
baseUri {
host = datastream.protected.mdtp
port = 80
port = 443
protocol = https
}
}
}
Expand All @@ -295,24 +296,28 @@ Prod {

auth {
host=auth.protected.mdtp
port=80
port = 443
protocol = https
}

datastream {
host=datastream.protected.mdtp
port=80
port = 443
protocol = https
}

des {
host=hods-proxy
port=80
port = 443
protocol = https
bearer-token = "TO_DEFINE"
environment = "live"
}

service-locator {
host=service-locator.protected.mdtp
port=80
port = 443
protocol = https
}

third-party-delegated-authority {
Expand All @@ -322,7 +327,8 @@ Prod {

user-details {
host=user-details.protected.mdtp
port=80
port = 443
protocol = https
}
}
}
Expand Down

0 comments on commit 6a0d03d

Please sign in to comment.