Skip to content

v3.9

Latest
Compare
Choose a tag to compare
@cuu508 cuu508 released this 20 Dec 09:44
· 2 commits to master since this release
2dd4994

This release changes the default value of the ALLOWED_HOSTS setting. Before, it was * (meaning, any host matches, host validation is disabled). Starting from v3.9, Healthchecks populates this setting automatically with the domain part of the SITE_ROOT setting. You do not need to set it unless you serve Healthchecks on more than one domain.

If you do serve the same Healthchecks instance on more than one domain, specify them all in ALLOWED_HOSTS, separated by commas:

ALLOWED_HOSTS=first.example.org,second.example.org

Improvements

  • Change the default value of ALLOWED_HOSTS from "*" to the domain part of SITE_ROOT

Bug Fixes

  • Fix fetchstatus.py (again) to handle SITE_ROOT with a path (#1108)