summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBen Busby <contact@benbusby.com>2021-12-09 15:33:58 -0700
committerBen Busby <contact@benbusby.com>2021-12-09 15:33:58 -0700
commit1092350fcd3abefe73fc2b2ba429e9ca46e67093 (patch)
tree4dea7fef52ad6334897fec4d933b26d1112f2204 /README.md
parentf887ad04007586f230665890ac3e14dd9454eff7 (diff)
downloadfarside-1092350fcd3abefe73fc2b2ba429e9ca46e67093.tar.gz
Remove `FARSIDE_NO_ROUTER` env var
The FARSIDE_NO_ROUTER variable wasn't terribly useful after refactoring the app to include the update routine internally (rather than available externally as an elixir script). Now the only supported environment variable is FARSIDE_TEST, which is still useful for tests and quick validation of functionality.
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/README.md b/README.md
index c00ac88..1f8113e 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ A user navigates to `/nitter` and is redirected to `nitter.net`. The next user
to request `/nitter` will be guaranteed to not be directed to `nitter.net`, and
will instead be redirected to a separate (random) working instance. That
instance will now take the place of `nitter.net` as the "reserved" instance, and
-`nitter.net` will be returned to the list of available Nitter instances.
+`nitter.net` will be returned to the list of available Nitter instances.
This "reserving" of previously chosen instances is performed in an attempt to
ensure better distribution of traffic to available instances for each service.
@@ -77,5 +77,4 @@ request per second per IP.
| Name | Purpose |
| -- | -- |
-| FARSIDE_TEST | If enabled, skips the instance availability check in `update.exs`. |
-| FARSIDE_NO_ROUTER | If enabled, skips creation of the router. Useful for running `update.exs` with `mix run` when the app is already running. |
+| FARSIDE_TEST | If enabled, bypasses the instance availability check and adds all instances to the pool. |