about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 5 insertions, 6 deletions
diff --git a/README.md b/README.md
index aa533b2..85f0e70 100644
--- a/README.md
+++ b/README.md
@@ -72,12 +72,7 @@ in {
     kittybox.nixosModules.default
   ];
   
-  services.kittybox = {
-    enable = true;
-    # These will not be required in future versions.
-    authorizationEndpoint = "https://indieauth.com/auth";
-    tokenEndpoint = "https://tokens.indieauth.com/token";
-  };
+  services.kittybox.enable = true;
 }
 ```
 
@@ -98,6 +93,10 @@ Set the following environment variables:
    files uploaded via the media endpoint.
    - To use flat files, use `file://` and append an absolute path to
      your folder like this: `file:///var/lib/kittybox/media`
+ - `AUTH_STORE_URI`: Storage for authentication-related data (tokens,
+   authorization codes etc.)
+   - To use flat files, use `file://` and append an absolute path to
+     your folder like this: `file:///var/lib/kittybox/auth`
 
 Additionally you can customize the `SERVE_AT` environment variable to
 customize where Kittybox will listen to requests.