From 66b2e55dd796391fe21501434a548ea76c9818d5 Mon Sep 17 00:00:00 2001 From: Kaleb Elwert Date: Mon, 1 Apr 2024 09:24:14 -0700 Subject: [PATCH] Update README.md to remove Tokens File section --- README.md | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/README.md b/README.md index fd7cfe8..fc38331 100644 --- a/README.md +++ b/README.md @@ -53,23 +53,3 @@ service. - `RUST_LOG` (optional, defaults to `info,seabird::server=trace`) - this is a common rust environment variable documented here because we set a default. All seabird functionality is exposed under `seabird`. - -### Token File - -The tokens file contains a mapping of `tag` to `auth_token`. Each tag will be -associated with a given auth token. It is meant as a convenience to make it -easier to identify where incoming requests are coming from. - -Sending a `SIGHUP` to the server process can be used to reload the configuration -file. - -As an example, the following tokens file defines the `belak` tag with an -auth_token of `hunter2`. - -```json -{ - "tokens": { - "belak": "hunter2" - } -} -```