From 69a6586c753ec1968edf6178a4a7ad15c76634df Mon Sep 17 00:00:00 2001 From: Luc Date: Tue, 7 Dec 2021 14:57:19 +0100 Subject: [PATCH] warn users to not include localhost-like hosts --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f1ee637..cb6b851 100644 --- a/README.md +++ b/README.md @@ -362,7 +362,7 @@ useful if you are manually installing TubeSync in some other environment. These | DJANGO_FORCE_SCRIPT_NAME | Django's FORCE_SCRIPT_NAME | /somepath | | TUBESYNC_DEBUG | Enable debugging | True | | TUBESYNC_WORKERS | Number of background workers, default is 2, max allowed is 8 | 2 | -| TUBESYNC_HOSTS | Django's ALLOWED_HOSTS | tubesync.example.com,otherhost.com | +| TUBESYNC_HOSTS | Django's ALLOWED_HOSTS, do not include `localhost`, `127.0.0.1` or `::1` | tubesync.example.com,otherhost.com | | GUNICORN_WORKERS | Number of gunicorn workers to spawn | 3 | | LISTEN_HOST | IP address for gunicorn to listen on | 127.0.0.1 | | LISTEN_PORT | Port number for gunicorn to listen on | 8080 |