From 67a7fb66c54176244be89b2c3854642d77430679 Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Wed, 13 Oct 2021 13:35:39 -0400 Subject: [PATCH] Docs: Fix numbering in password reset FAQ --- docs/content/FAQ/_index.md | 50 +++++++++++++++++++------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/docs/content/FAQ/_index.md b/docs/content/FAQ/_index.md index 3a7d7b2b8..52d888fca 100644 --- a/docs/content/FAQ/_index.md +++ b/docs/content/FAQ/_index.md @@ -64,33 +64,33 @@ However, you can save the Monkey's existing configuration by logging in with you In order to reset the credentials, the following edits need to be made: 1. Delete the `user` field. It will look like this: -```json -{ - ... - "user": "username", - ... -} -``` + ```json + { + ... + "user": "username", + ... + } + ``` 1. Delete the `password_hash` field. It will look like this: -```json -{ - ... - "password_hash": "$2b$12$d050I/MsR5.F5E15Sm7EkunmmwMkUKaZE0P0tJXG.M9tF.Kmkd342", - ... -} -``` + ```json + { + ... + "password_hash": "$2b$12$d050I/MsR5.F5E15Sm7EkunmmwMkUKaZE0P0tJXG.M9tF.Kmkd342", + ... + } + ``` 1. Set `server_config` to `password`. It should look like this: -```json -{ - ... - "environment": { - ... - "server_config": "password", - ... - }, - ... -} -``` + ```json + { + ... + "environment": { + ... + "server_config": "password", + ... + }, + ... + } + ``` Then, reset the Monkey Island process. On Linux, use `sudo systemctl restart monkey-island.service`. On Windows, restart the program.