通过 XAMPP 托管时允许外部访问 node.js 应用程序

Allowing external access to node.js application while hosting through XAMPP

所以我有以下 URL 引导外部用户访问我的端口转发 XAMPP 网站。

http://ip_to_my_computer:433

但是,我的节点服务器在端口 466 上。我如何连接到它?我做不到

var client = io.connect('http://ip_to_my_computer:433:466');

谢谢!

在我看来,您正试图从 您的 XAMPP 托管服务器(如 .php 或 .js脚本)你的Node.js实例?

简单:

var client = io.connect('http://ip_to_my_computer:node_server_port');

在您的情况下,您声称您的节点服务器 运行 在端口 466 上。

我敢打赌,您的 OS 会阻塞这么低的端口 - 尝试更改您的节点服务器以侦听 8000 - 9000 之间的端口。