From afbc11058ab073fa9fe19490f53a1eda7bbf0ea7 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Tue, 20 Feb 2024 17:25:42 -0800 Subject: [PATCH] Updated Configuration (markdown) --- Configuration.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Configuration.md b/Configuration.md index 06cc3fa..26647af 100644 --- a/Configuration.md +++ b/Configuration.md @@ -129,14 +129,15 @@ Password (again): #### `PUBLIC_INDEX` / `PUBLIC_SNAPSHOTS` / `PUBLIC_ADD_VIEW` -**Possible Values:** [`False`]/`True` +**Possible Values:** [`True`]/`False` Configure whether or not login is required to use each area of ArchiveBox. ```python3 archivebox manage createsuperuser # set a password before disabling public access -archivebox config --set PUBLIC_INDEX=False # True = allow users to view main snapshots list without logging in -archivebox config --set PUBLIC_SNAPSHOTS=False # True = allow users to view snapshot content without logging in +# these are the default values +archivebox config --set PUBLIC_INDEX=True # True = allow users to view main snapshots list without logging in +archivebox config --set PUBLIC_SNAPSHOTS=True # True = allow users to view snapshot content without logging in archivebox config --set PUBLIC_ADD_VIEW=False # True = allow users to submit new URLs to archive without logging in ``` https://github.com/ArchiveBox/ArchiveBox#-web-ui-usage