From 9bfd4646812a0a5e7a607d9e5fae9179b408dcad Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 18 Aug 2021 22:16:14 +0100 Subject: [PATCH] :memo: Adds docs for guest access --- README.md | 5 ++++- docs/authentication.md | 3 +++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b8ab6b20..5bdc6adb 100644 --- a/README.md +++ b/README.md @@ -251,7 +251,10 @@ appConfig: - user: alicia hash: 4D1E58C90B3B94BCAD9848ECCACD6D2A8C9FBC5CA913304BBA5CDEAB36FEEFA3 ``` -At present, access control is handled on the frontend, and therefore in security-critical situations, it is recommended to use an alternate method for authentication, such as [Authelia](https://www.authelia.com/), a VPN or web server and firewall rules. + +By default, when authentication is configured no user can access your dashboard without first logging in. If you would like to allow for read-only access by unauthenticated users, then you can enable guest mode, by setting `appConfig.enableGuestAccess: true`. + +**Note**: At present, access control is handled on the frontend, and therefore in security-critical situations, it is recommended to use an alternate method for authentication, such as [Authelia](https://www.authelia.com/), a VPN or web server and firewall rules. Instructions for setting this up can be found [in the docs](docs/authentication.md#alternative-authentication-methods).