我应该如何在本地互联网网络中使用名称而不是IP地址

时间:2017-01-31 07:45:12

标签: node.js nginx

我写了一个node.js服务器应用程序并在我的大学本地互联网上运行它。我需要其他人不使用我的IP地址连接。 我的电脑系统有Ubuntu 16.04操作系统 我知道地址应该是     http://mypchostname:port 但这也不起作用。 我已经尝试使用更改设备主机名     sudo hostname new-hostname

我已经在我的系统上安装了nginx。我将/ etc / hostname文件内容更改为myhostname和/ etc / hosts     127.0.0.1 myhostname     127.0.1.1 myhostname

我将其添加到我的监听功能

listen(PORT,"myhostname",34, function(){
//Callback triggered when server is successfully listening. Hurray!
console.log("Server listening on: http://localhost:%s", PORT);
});

我不知道为什么它在我们的大学本地网络中不起作用 请帮帮我,我赶时间

0 个答案:

没有答案