Single node.js http server accepting connections on multiple hostnames

前端 未结 2 2019
南笙
南笙 2020-12-28 23:58

Is it possible to create single http server in node.js which will accept connections on multiple hostnames? For example: I have a number of subdomains (x1.domain.com, x2.dom

相关标签:
2条回答
  • 2020-12-29 00:36

    This should be possible with the 'vhost' middleware of ConnectJS:

    http://senchalabs.github.com/connect/middleware-vhost.html

    Those docs are rather lacking, but looks like the ever-prolific TJ has an example here:

    https://github.com/LearnBoost/cluster/commit/7ede5b13a9b829ff25557ec0d6f483f6bd45ada8

    0 讨论(0)
  • 2020-12-29 00:51

    It looks like it's not (natively) possible unless some kind of proxy or extra IP address for certain (sub)domains is used.

    0 讨论(0)
提交回复
热议问题