指向 Node.js 应用程序的多个网站,提取主机名
Multiple websites pointing to a Node.js application, extract hostname
我有一个 Node.js React 应用程序,它输出从外部 API 获取的不同信息,具体取决于请求中作为变量提供的域。
我希望将数百个域指向应用程序,并且需要提取根域(用于访问应用程序)然后在 API 请求中使用。
考虑到我将有很多域并且不能每次都编辑 vhost 文件,我该如何大规模地执行此操作?
DNS: domain1.com CNAME domains.example.com
App: Vistor goes to "https://domain1.com/example" -> *var domain = "domain1.com"* -> Customized page output
我不知道您是否在使用 Express,但 this answer might point you in the right direction. Your server should be able to look at the Host
header on the request. I think all HTTP requests must include a Host
header (documentation),但它在您的应用程序中的公开方式可能因服务器而异。
我有一个 Node.js React 应用程序,它输出从外部 API 获取的不同信息,具体取决于请求中作为变量提供的域。
我希望将数百个域指向应用程序,并且需要提取根域(用于访问应用程序)然后在 API 请求中使用。
考虑到我将有很多域并且不能每次都编辑 vhost 文件,我该如何大规模地执行此操作?
DNS: domain1.com CNAME domains.example.com
App: Vistor goes to "https://domain1.com/example" -> *var domain = "domain1.com"* -> Customized page output
我不知道您是否在使用 Express,但 this answer might point you in the right direction. Your server should be able to look at the Host
header on the request. I think all HTTP requests must include a Host
header (documentation),但它在您的应用程序中的公开方式可能因服务器而异。