From 3561825425863de97de936b22a8904ded4b6b710 Mon Sep 17 00:00:00 2001 From: Mirco Nasuti <mirco.nasuti@chuv.ch> Date: Tue, 19 Jul 2016 16:41:58 +0200 Subject: [PATCH] trying to fix template --- config/application.tmpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/application.tmpl b/config/application.tmpl index a5af71ba0..655ac9f44 100644 --- a/config/application.tmpl +++ b/config/application.tmpl @@ -34,10 +34,10 @@ logging: server: contextPath: {{ default .Env.CONTEXT_PATH "/services" }} - port: {{ default .Env.PORT 8080 }} + port: {{ default .Env.PORT "8080" }} use-forward-headers: true session: - timeout: {{ default .Env.SESSION_TIMEOUT 2592000 }} + timeout: {{ default .Env.SESSION_TIMEOUT "2592000" }} workflow: experimentUrl: {{ default .Env.EXPERIMENT_URL "http://172.22.0.1:8087/experiment" }} @@ -50,4 +50,4 @@ frontend: url: {{ default .Env.FRONTEND_REDIRECT_URL "http://localhost/home" }} authentication: - enabled: {{ default .Env.AUTHENTICATION 1 }} + enabled: {{ default .Env.AUTHENTICATION "1" }} -- GitLab