From 348118a5ed65792a81e821f1b24ef2d74f359de2 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Thu, 10 Jun 2021 10:50:59 -0400 Subject: [PATCH] docs: Minor corrections to docker certificate setup --- docs/content/setup/docker.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/content/setup/docker.md b/docs/content/setup/docker.md index 478cb6660..f9335dc44 100644 --- a/docs/content/setup/docker.md +++ b/docs/content/setup/docker.md @@ -82,13 +82,13 @@ been signed by a private certificate authority. guardicore/monkey-island:1.10.0 --setup-only ``` -1. (Optional but recommended) Move your `.crt` and `.key` files to `./monkey_island_data`. +1. Move your `.crt` and `.key` files to `./monkey_island_data`. -1. Make sure that your `.crt` and `.key` files are read-only and readable only by you. +1. Make sure that your `.crt` and `.key` files are readable only by you. ```bash - chmod 400 - chmod 400 + chmod 600 ./monkey_island_data/ + chmod 600 ./monkey_island_data/ ``` 1. Edit `./monkey_island_data/server_config.json` to configure Monkey Island @@ -106,8 +106,8 @@ been signed by a private certificate authority. "start_mongodb": false }, "ssl_certificate": { - "ssl_certificate_file": "", - "ssl_certificate_key_file": "", + "ssl_certificate_file": "/monkey_island_data/", + "ssl_certificate_key_file": "/monkey_island_data/" } } ```