gpt4 book ai didi

node.js - 在我的域上运行 nodejs 文件

转载 作者:搜寻专家 更新时间:2023-11-01 00:06:29 25 4
gpt4 key购买 nike

目前我已经在 Nodejs 中创建了一个简单的文件,它在我的 localhost:8080 上运行良好。但是我想在我的个人域上运行这个文件。那么需要做什么帮助设置才能在我的个人域 ex 上运行:xyz.com

这是我在本地主机上运行良好的 nodejs 的简单代码

<pre>  

var http = require('http');

var server = http.createServer(function (request, response) {
if (request.url === '/') {
response.setHeader('Content-Type', 'text/html');
response.end('<strong>obligatory bear!</strong>');
}
});

server.listen(8080, function () {
console.log('Im listening on port 8080');
});
</pre>

最佳答案

添加行

127.0.0.1    xyz.com

在你的/etc/hosts!!!然后您就可以通过 xyz.com:8080 访问您的网站。编辑主机文件以 super 用户模式打开文件。

sudo -H gedit /etc/hosts

关于node.js - 在我的域上运行 nodejs 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36280385/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com