Enabling HTTPS in test deployment

This commit is contained in:
David Négrier 2020-04-22 19:16:04 +02:00
parent a567cd2e11
commit 312940761c

View file

@ -7,7 +7,8 @@
"back": { "back": {
"image": "thecodingmachine/workadventure-back:"+tag, "image": "thecodingmachine/workadventure-back:"+tag,
"host": { "host": {
"url": "api."+namespace+".workadventure.test.thecodingmachine.com" "url": "api."+namespace+".workadventure.test.thecodingmachine.com",
"https": "enable"
}, },
"ports": [8080], "ports": [8080],
"env": { "env": {
@ -17,12 +18,18 @@
"front": { "front": {
"image": "thecodingmachine/workadventure-front:"+tag, "image": "thecodingmachine/workadventure-front:"+tag,
"host": { "host": {
"url": namespace+".workadventure.test.thecodingmachine.com" "url": namespace+".workadventure.test.thecodingmachine.com",
"https": "enable"
}, },
"ports": [80], "ports": [80],
"env": { "env": {
"API_URL": "http://api."+namespace+".workadventure.test.thecodingmachine.com" "API_URL": "http://api."+namespace+".workadventure.test.thecodingmachine.com"
} }
} }
},
"config": {
"https": {
"mail": "d.negrier@thecodingmachine.com"
}
} }
} }