add hostname used to debug message

This commit is contained in:
AJ ONeal 2017-06-09 22:13:29 +00:00
parent d969a7d4d4
commit 4da591c926
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ module.exports.create = function (webserver, xconfx, state) {
if (!/^api\.[a-z0-9\-]+/.test(hostname)) {
res.send({ error:
{ message: "API access is restricted to proper 'api'-prefixed lowercase subdomains."
{ message: "['" + hostname + "'] API access is restricted to proper 'api'-prefixed lowercase subdomains."
+ " The HTTP 'Host' header must exist and must begin with 'api.' as in 'api.example.com'."
+ " For development you may test with api.localhost.daplie.me (or any domain by modifying your /etc/hosts)"
, code: 'E_NOT_API'