Enabling HTTPS in test deployment
authorDavid Négrier <d.negrier@thecodingmachine.com>
Wed, 22 Apr 2020 17:16:04 +0000 (19:16 +0200)
committerDavid Négrier <d.negrier@thecodingmachine.com>
Wed, 22 Apr 2020 17:16:04 +0000 (19:16 +0200)
deeployer.libsonnet

index 7927dd5abb4d0ef87a141c7797b8c45081c8357e..105f902530007e7e1c4d416f18391743457f4182 100644 (file)
@@ -7,7 +7,8 @@
      "back": {
        "image": "thecodingmachine/workadventure-back:"+tag,
        "host": {
-         "url": "api."+namespace+".workadventure.test.thecodingmachine.com"
+         "url": "api."+namespace+".workadventure.test.thecodingmachine.com",
+         "https": "enable"
        },
        "ports": [8080],
        "env": {
     "front": {
       "image": "thecodingmachine/workadventure-front:"+tag,
       "host": {
-        "url": namespace+".workadventure.test.thecodingmachine.com"
+        "url": namespace+".workadventure.test.thecodingmachine.com",
+        "https": "enable"
       },
       "ports": [80],
       "env": {
         "API_URL": "http://api."+namespace+".workadventure.test.thecodingmachine.com"
       }
     }
+  },
+  "config": {
+    "https": {
+      "mail": "d.negrier@thecodingmachine.com"
+    }
   }
 }