From 7d3add9c92ae8ab5c6d7c1bacb4b84e908c18013 Mon Sep 17 00:00:00 2001 From: EspiDev Date: Fri, 11 May 2018 20:35:11 -0400 Subject: [PATCH] config fix --- Dockerfile | 2 +- EstiConsole/config.json => config.json | 6 +++--- EstiConsole/esticonsole => esticonsole | Bin EstiConsole/server.crt => server.crt | 0 EstiConsole/server.key => server.key | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename EstiConsole/config.json => config.json (84%) rename EstiConsole/esticonsole => esticonsole (100%) rename EstiConsole/server.crt => server.crt (100%) rename EstiConsole/server.key => server.key (100%) diff --git a/Dockerfile b/Dockerfile index f7d3fd3..ce55e73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ RUN mkdir /data RUN mkdir /data/logs RUN mkdir /data/plugins -CMD exec EstiConsole/esticonsole +CMD exec ./esticonsole diff --git a/EstiConsole/config.json b/config.json similarity index 84% rename from EstiConsole/config.json rename to config.json index 82375fd..055803a 100644 --- a/EstiConsole/config.json +++ b/config.json @@ -2,11 +2,11 @@ "instance_name": "CTF", "instance_port": 19005, "sslencryption": true, - "cert_file_path": "EstiConsole/server.crt", - "key_file_path": "EstiConsole/server.key", + "cert_file_path": "./server.crt", + "key_file_path": "./server.key", "require_authentication": true, "enable_root": true, - "master_key_location": "EstiConsole/masterkey.key", + "master_key_location": "./masterkey.key", "servers": [ { "instance_name": "CTF", diff --git a/EstiConsole/esticonsole b/esticonsole similarity index 100% rename from EstiConsole/esticonsole rename to esticonsole diff --git a/EstiConsole/server.crt b/server.crt similarity index 100% rename from EstiConsole/server.crt rename to server.crt diff --git a/EstiConsole/server.key b/server.key similarity index 100% rename from EstiConsole/server.key rename to server.key