TSK-536: taskana-rest-example redirect http -> https

This commit is contained in:
Mustapha Zorgati 2018-06-22 10:05:00 +02:00 committed by Holger Hagen
parent 5ef8fe2ba0
commit 7e3439c00f
3 changed files with 5 additions and 2 deletions

View File

@ -30,3 +30,6 @@ taskana.ldap.maxNumberOfReturnedAccessIds=50
taskana.jobscheduler.cron=0 * * * * *
####### cache static resources properties
spring.resources.cache.cachecontrol.cache-private=true
####### tomcat is not detecting the x-forward headers from bluemix as a trustworthy proxy
server.tomcat.internal-proxies=.*
server.use-forward-headers=true

View File

@ -1,3 +1,3 @@
{
"taskanaRestUrl": "https://taskana-rest.mybluemix.net"
"taskanaRestUrl": "https://taskana.mybluemix.net"
}

View File

@ -1,4 +1,4 @@
export const environment = {
production: true,
taskanaRestUrl: 'https://taskana-rest.mybluemix.net'
taskanaRestUrl: 'https://taskana.mybluemix.net'
};