settings: Stop enabling USE_X_FORWARDED_HOST by default.

This was added in 1fded25025, and is not
necessary for standard Zulip installs.  While both Host: and
X-Forwarded-Host: are nominally untrusted, there is no reason to
complicate the deployment by defaulting it on.
This commit is contained in:
Alex Vandiver 2022-04-08 13:33:49 -07:00 committed by Tim Abbott
parent 9a6886f630
commit 68bc975066
1 changed files with 0 additions and 2 deletions

View File

@ -153,8 +153,6 @@ USE_TZ = True
# this directory will be used to store logs for development environment
DEVELOPMENT_LOG_DIRECTORY = os.path.join(DEPLOY_ROOT, "var", "log")
# Make redirects work properly behind a reverse proxy
USE_X_FORWARDED_HOST = True
# Extend ALLOWED_HOSTS with localhost (needed to RPC to Tornado),
ALLOWED_HOSTS += ["127.0.0.1", "localhost"]