Webhostmost部署node-ws项目

Webhostmost项目部署

  1. 注册WebhostmostGithub项目,邮箱认证后,点击Buy New Hosting Plan,选择左上角Free Plan,点击Order Now.

  1. 跳转到域名选项,选择第三个Use Subdomain(选择官方提供的免费域名.freewebhostmost.com),输入自己的域名前缀,例如:hezi.freewebhostmost.com ,点击Check创建自己的项目访问链接。

重要通知重要通知重要通知,官方不再提供的原域名了,请您使用自己的域名托管在此平台 查看此教程 https://www.kejiland.com/post/40e10f58.html

  1. 官方提供永久免费125M的磁盘空间和5个国家地区(官方地区数据混乱,哪吒显示只有三个地区),服务器位置随自己的爱好选择,跳转到支付页面,点击右边Checkout.(125M空间部署此项目足够)

  1. 回到首页即可看到服务器信息,点击Go To Control Panel跳转到后台管理页面,点击左栏Files ManagementFile Management➡domains➡xxx.freewebhostmost.com➡public_html. 将项目中的app.jspackage.json上传到此目录下即可。

  1. 打开app.js修给几处参数数据即可,UUID NEZHA_SERVER NEZHA_PORT NEZHA_KEY DOMAIN PORT

哪吒数据三件套就不多说了,有哪吒的都会;如果你没有哪吒可不填。

UUID 如有必要也可以替换新的;DOMAIN 填写分配的域名可保活,以防万一也可以放在哪吒服务中。

PORT 重点 重点 重点 说三遍,不建议默认3000端口,端口一定会占用,端口可随便填写。

  1. 点击左栏Website ManagementNodeJs APPCreate applicationCREATE

Node.js version➡v22

Application root➡domains/xxx.freewebhostmost.com/public_html (替换自己的完整域名)

Application startup file➡app.js

  1. 回到Development Toolsterminal。刚才创建完成Node.js应用后会页面出现一行命令,将此命令复制到terminal中回车获取权限,之后再输入 npm i安装依赖。

  1. 回到Node.js应用界面,点击Run JS script

  1. 输入你的域名/sub即可获取节点。例如https://hezi.freewebhostmost.com/sub,如果你之前没有反代此域名请你用原域名,节点如下:

vless://b28f60af-d0b9-4ddf-baaa-7e49c93c380b@hezi.freewebhostmost.com:443?encryption=none&security=tls&sni=hezi.freewebhostmost.com&allowInsecure=1&type=ws&path=%2F#USA-webhostmost-GCP

如果想workers反代请使用一下代码:二选一

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export default {
async fetch(request, env) {
let url = new URL(request.url);
if (url.pathname.startsWith('/')) {
var arrStr = [
'aaaa.bbbbb.hf.space',// 修改成自己的节点IP/域名
];
url.protocol = 'https:'
url.hostname = getRandomArray(arrStr)
let new_request = new Request(url, request);
return fetch(new_request);
}
return env.ASSETS.fetch(request);
},
};
function getRandomArray(array) {
const randomIndex = Math.floor(Math.random() * array.length);
return array[randomIndex];
}
1
2
3
4
5
6
7
8
9
10
11
export default {
async fetch(request, env, ctx) {
let url = new URL(request.url);
if(url.pathname.startsWith('/')){
url.hostname="translate.google.com"; // 修改成自己的节点IP/域名
let new_request = new Request(url, request)
return await fetch(new_request)
}
return await env.ASSETS.fetch(request);
},
};
  1. 来到哪吒即可看到哪吒已经点亮。