From dca56f73cee363022f9e36dbb3160383d409353a Mon Sep 17 00:00:00 2001 From: Daniel Holbach Date: Fri, 23 Nov 2018 15:54:52 +0100 Subject: [PATCH] it's not env variables, it's cli arguments --- site/faq.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/site/faq.md b/site/faq.md index f6239da7a..949635d50 100644 --- a/site/faq.md +++ b/site/faq.md @@ -44,4 +44,14 @@ OSS Scope has no user concept, this is only available in Weave Cloud. To limit t - setup a reverse proxy with auth and block access to non admin users, - capture the calls with something like Chrome network console to get the endpoints to know which requests to authenticate in the proxy server. -- you can use Basic HTTP Auth since Scope 1.10.0 - just use the `BASIC_AUTH_USERNAME` and `BASIC_AUTH_PASSWORD` environment variables. \ No newline at end of file +- you can use Basic HTTP Auth since Scope 1.10.0 - just use these command line + arguments: + + ```cli + -app.basicAuth + Enable basic authentication for app + -app.basicAuth.password string + Password for basic authentication (default "admin") + -app.basicAuth.username string + Username for basic authentication (default "admin") + ```