From e56fa80910279fc330dc888aa84f96dcc2ae3e34 Mon Sep 17 00:00:00 2001 From: Guille Date: Tue, 5 Feb 2019 11:52:08 +0100 Subject: [PATCH] Remove unused template and fix actual conf template with new param --- src/main/resources/configuration.tpl.json | 3 ++- .../install_configuration_template.tpl.json | 22 ------------------- 2 files changed, 2 insertions(+), 23 deletions(-) delete mode 100644 src/main/resources/install_configuration_template.tpl.json diff --git a/src/main/resources/configuration.tpl.json b/src/main/resources/configuration.tpl.json index e74c5e1..e7b6429 100644 --- a/src/main/resources/configuration.tpl.json +++ b/src/main/resources/configuration.tpl.json @@ -11,7 +11,8 @@ "security": { "forceHttpsLinks": true, "port": 80, - "securePort": 443 + "securePort": 443, + "checkHostnames": true }, "tomcat": { "uid": "tomcat8", diff --git a/src/main/resources/install_configuration_template.tpl.json b/src/main/resources/install_configuration_template.tpl.json deleted file mode 100644 index 83eca10..0000000 --- a/src/main/resources/install_configuration_template.tpl.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "home": "/root", - "jdbc": { - "host": "127.0.0.1", - "port": 5432, - "db": "aggregate", - "schema": "aggregate", - "user": "aggregate", - "password": "aggregate" - }, - "security": { - "forceHttpsLinks": true, - "port": 80, - "securePort": 443, - "checkHostnames": true - }, - "tomcat": { - "uid": "tomcat8", - "gid": "tomcat8", - "webappsPath": "/var/lib/tomcat8" - } -}