From e6c16b99ab172edd843e5b25bd6e98d7e002ba79 Mon Sep 17 00:00:00 2001 From: Hai Pham Date: Thu, 11 Jan 2018 10:44:50 +0800 Subject: [PATCH] Update README.md - Add missing `:`. --- .github/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/README.md b/.github/README.md index 1ceb623..ab59582 100644 --- a/.github/README.md +++ b/.github/README.md @@ -114,11 +114,11 @@ docker run -d -e VIRTUAL_HOST=your.domain.com \ In order to be able to secure your virtual host with basic authentication, you must create a htpasswd file within `${NGINX_FILES_PATH}/htpasswd/${VIRTUAL_HOST}` via: ```bash -sudo sh -c "echo -n '[username]' >> ${NGINX_FILES_PATH}/htpasswd/${VIRTUAL_HOST}" +sudo sh -c "echo -n '[username]:' >> ${NGINX_FILES_PATH}/htpasswd/${VIRTUAL_HOST}" sudo sh -c "openssl passwd -apr1 >> ${NGINX_FILES_PATH}/htpasswd/${VIRTUAL_HOST}" ``` -> Please substitute the `${NGINX_FILES_PATH}` with your path information, `[username]` with your username and `${VIRTUAL_HOST}` with your host's domain. You will be prompted for a password. +> Please substitute the `${NGINX_FILES_PATH}` with your path information, replace `[username]` with your username and `${VIRTUAL_HOST}` with your host's domain. You will be prompted for a password. 2. Using multiple networks