mirror of
https://github.com/discourse/discourse.git
synced 2024-11-21 16:38:15 -06:00
FEATURE: allow users to specify a second hostname if needed
(very rarely needed feature, mostly for multisite and origin pull cdns)
This commit is contained in:
parent
78bd4508d1
commit
c056c3ba7e
@ -23,7 +23,10 @@ class GlobalSetting
|
||||
hash[s] = val
|
||||
end
|
||||
end
|
||||
hash["host_names"] = [ hostname ]
|
||||
hostnames = [ hostname ]
|
||||
hostnames << hostname2 if hostname2.present?
|
||||
|
||||
hash["host_names"] = hostnames
|
||||
hash["database"] = db_name
|
||||
|
||||
hash["prepared_statements"] = !!self.db_prepared_statements
|
||||
|
@ -46,6 +46,9 @@ db_prepared_statements = true
|
||||
# hostname running the forum
|
||||
hostname = "www.example.com"
|
||||
|
||||
# backup hostname
|
||||
hostname2 =
|
||||
|
||||
# address of smtp server used to send emails
|
||||
smtp_address =
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user