Use host header instead of req.host which is actually req.hostname
This commit is contained in:
parent
830486bc4f
commit
58c65a5bac
|
@ -13,7 +13,7 @@ function merge(locals, res) {
|
|||
siteTitle: Config.get("html-template.title"),
|
||||
siteDescription: Config.get("html-template.description"),
|
||||
siteAuthor: "Calvin 'calzoneman' 'cyzon' Montgomery",
|
||||
domain: res.req.host,
|
||||
domain: res.req.header("host"),
|
||||
loginDomain: Config.get("https.enabled") ? Config.get("https.full-address")
|
||||
: Config.get("http.full-address"),
|
||||
csrfToken: typeof res.req.csrfToken === 'function' ? res.req.csrfToken() : '',
|
||||
|
|
Loading…
Reference in a new issue