Add a global setting for CDN origin

This is so that, on a multisite cluster, when we handle a CDN request,
the hostname that is requested corresponds to one of the sites -
specifically the default site.
This commit is contained in:
Daniel Waterworth 2020-05-12 16:34:12 +01:00
parent 2298e14d38
commit 497dc6eaa7
2 changed files with 4 additions and 0 deletions

View File

@ -140,6 +140,7 @@ class GlobalSetting
hostnames << backup_hostname if backup_hostname.present?
hostnames << URI.parse(cdn_url).host if cdn_url.present?
hostnames << cdn_origin_hostname if cdn_origin_hostname.present?
hash["host_names"] = hostnames
hash["database"] = db_name

View File

@ -96,6 +96,9 @@ load_mini_profiler = true
# recommended, cdn used to access assets
cdn_url =
# The hostname used by the CDN to request assets
cdn_origin_hostname =
# comma delimited list of emails that have developer level access
developer_emails =