From 8fef30b9c0d26ce29e4baacd03ed936812310128 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Tue, 12 Jul 2022 16:51:44 -0700 Subject: [PATCH] Move ALLOWED_HOSTS -> ALLOWED_HOSTS.example with some examples too ALLOWED_HOSTS file is used in production to determine which hosts this server is allowed to respond from. This has been moved to ALLOWED_HOSTS.example with some example usage included. This is mostly used to prevent accidentally committing and overwriting allowed hosts used in production. Signed-off-by: Alek Ratzloff --- ALLOWED_HOSTS | 0 ALLOWED_HOSTS.example | 4 ++++ 2 files changed, 4 insertions(+) delete mode 100644 ALLOWED_HOSTS create mode 100644 ALLOWED_HOSTS.example diff --git a/ALLOWED_HOSTS b/ALLOWED_HOSTS deleted file mode 100644 index e69de29..0000000 diff --git a/ALLOWED_HOSTS.example b/ALLOWED_HOSTS.example new file mode 100644 index 0000000..769e3b9 --- /dev/null +++ b/ALLOWED_HOSTS.example @@ -0,0 +1,4 @@ +localhost +127.0.0.1 +::1 +any.other.host.you.want.to.allow.com