Serv00.com搭建使用

Serv00.comRevolutionary Free Hosting 提供免费的PHP,MYSQL,SMTP,PostgreSQL,MongoDB,可以SSH连接创建自己的应用,可以绑定域名,无广告。 注册 注册Serv00 建议用gmail邮箱,不要用微软邮箱,因为就是提示成功它也收不到邮件. 注册小技巧 gmail邮箱可以无限别名,假设已经有一个yourname@gmail.com那么可以使用别名在用户名后面添加+或者.后面加其它随机字母数字,比如使用yourname+6dhj68kkm@gmail.com 或者 yourname.jdjjs64kpo@gmail.com 达到使用1个gmail邮箱来注册多个serv00账号,账号信息邮件在yourname@gmail.com接收。注册成功就能在邮件里面看到相关账号信息 搭建 面板设置 打开Additional services , Run your own applications 使状态 Status改为 Enabled开启 可最多3个端口号,在Port reservation,Add port中设置添加。 搭建hy2,tuic,vmess 提前在面板添加1个tcp端口给vmess使用,2个udp端口分别给tuic和hy2用 https://github.com/yixiu001/serv00-singbox wget https://raw.githubusercontent.com/yixiu001/serv00-singbox/main/yixiu.sh chmod +x yixiu.sh 编辑yixiu.sh修改tcp与udp端口为面板对应添加的端口,修改uuid为自己的 UUID在线生成或者命令行生成 cat /proc/sys/kernel/random/uuid 然后创建screen窗口 curl -O https://raw.githubusercontent.com/eooce/ssh_tool/main/index.js && curl -O https://raw.githubusercontent.com/eooce/nodejs-argo/main/package.json && npm install && chmod +x index.js && screen node index.js 再次执行 ./yixiu.sh 复制节点信息使用 搭建vmess+argo 如果ip端口被xxx了,可套用cloudflare的argo,实现CDN减速 https://github.com/eooce/scripts vmess-ws-tls(argo)一键脚本 必填变量:PORT=TCP端口 可选变量:UUID NEZHA_SERVER NEZHA_PORT NEZHA_KEY CFIP CFPORT bash <(curl -Ls https://raw.githubusercontent.com/eooce/scripts/master/containers-shell/00_vmess.sh) 修改00_vmess.sh中的TCP端口,uuid,argo的token域名 ...

九月 2, 2024 · admin

Hysteria2的安装、配置、使用

Hysteria2是一个基于HTTP3的UDP协议代理。 https://github.com/apernet/hysteria https://v2.hysteria.network/zh/ 安装 bash <(curl -fsSL https://get.hy2.sh/) 卸载 bash <(curl -fsSL https://get.hy2.sh/) --remove 默认的配置文件/etc/hysteria/config.yaml内容如下 # listen: :443 acme: domains: - your.domain.net email: your@email.com auth: type: password password: /dKigjv9qEJrQbJvm3RMtIGg masquerade: type: proxy proxy: url: https://news.ycombinator.com/ rewriteHost: true 在线生成密码 配置Hysteria2 分二种情况,拥有域名、没有域名 拥有域名 拥有域名的话,只需要提前把域名解析到服务器的IP地址上,替换your.domain.net为自己的域名。域名SSL证书通过acme全自动申请。 sed -i 's/your.domain.net/自己的域名/' /etc/hysteria/config.yaml 自己的域名改为实际域名。 若无域名,生成自签证书 openssl req -x509 -nodes -newkey ec:<(openssl ecparam -name prime256v1) -keyout /etc/hysteria/server.key -out /etc/hysteria/server.crt -subj "/CN=bing.com" -days 36500 && chown hysteria /etc/hysteria/server.key && chown hysteria /etc/hysteria/server.crt 修改配置文件/etc/hysteria/config.yaml ...

三月 12, 2024 · admin

联通电信移动V2ray免流host http教程

V2ray服务端的搭建配置 bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) 免流的方案采用Vadminss协议+TCP+HTTP,编辑配置文件/usr/local/etc/xray/config.json, nano /usr/local/etc/xray/config.json 完整配置示范如下 { "inbounds": [ { "port": 80, "protocol": "vmess", "settings": { "clients": [ { "id": "这里填写你的UUID" } ] }, "streamSettings": { "network": "tcp", "tcpSettings": { "header": { "type": "http", "response": { "version": "1.1", "status": "200", "reason": "OK", "headers": { "Content-Type": ["application/octet-stream", "video/mpeg"], "Transfer-Encoding": ["chunked"], "Connection": ["keep-alive"], "Pragma": "no-cache" } } } } } } ], "outbounds": [ { "protocol": "freedom" } ] } 可以通过命令cat /proc/sys/kernel/random/uuid随机生成 ws配置如下 { "inbounds": [ { "port": 8080, "protocol": "vmess", "settings": { "clients": [ { "id": "这里填写你的UUID" } ] }, "streamSettings": { "network": "ws", "wsSettings": { "path": "/ray" } } } ], "outbounds": [ { "protocol": "freedom", "settings": {} } ] } 管理启动V2ray ...

九月 9, 2022 · admin

V2ray安装配置Vadminss、VLESS、XTLS教程

近期更新重点 V2Ray v4.27.0+新增支持VLESS新协议 V2Ray v4.29.0+新增支持XTLS新协议 Vadminss AEAD will be used when alterId is 0 in V2Ray v4.28.0+ 安装脚本放废弃go.sh改用install-realese.sh V2Ray v4.33.0移除了XTLS,建议使用V2Ray v4.32.1 详情参考 https://v2ray.com/ https://github.com/v2ray/v2ray-core https://toutyrater.github.io/ https://guide.v2fly.org/ https://github.com/veekxt/v2ray-template https://github.com/v2fly/v2ray-examples https://www.v2fly.org/ https://github.com/rprx/v2ray-vless https://github.com/v2fly/v2ray-core https://github.com/XTLS/Xray-core 排名不分先后顺序 致敬开发者们的无私奉献 xray https://github.com/XTLS/Xray-core Install & Upgrade Xray-core and .dat files bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) Update geoip.dat and geosite.dat only bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-dat-release.sh) Remove Xray, except json and logs bash <(curl -L https://raw.githubusercontent.com/XTLS/Xray-install/main/install-release.sh) --remove 成功安装后会提示如下 # /etc/systemd/system/xray.service [Unit] Description=Xray Service Documentation=https://github.com/xtls After=network.target nss-lookup.target [Service] User=nobody CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE AmbientCapabilities=CAP_NET_ADMIN CAP_NET_BIND_SERVICE NoNewPrivileges=true ExecStart=/usr/local/bin/xray run -config /usr/local/etc/xray/config.json Restart=on-failure RestartPreventExitStatus=23 [Install] WantedBy=multi-user.target # /etc/systemd/system/xray.service.d/10-donot_touch_single_conf.conf # In case you have a good reason to do so, duplicate this file in the same directory and make your customizes there. # Or all changes you made will be lost! # Refer: https://www.freedesktop.org/software/systemd/man/systemd.unit.html [Service] ExecStart= ExecStart=/usr/local/bin/xray run -config /usr/local/etc/xray/config.json installed: /usr/local/bin/xray installed: /usr/local/share/xray/geoip.dat installed: /usr/local/share/xray/geosite.dat installed: /usr/local/etc/xray/config.json installed: /var/log/xray/ installed: /var/log/xray/access.log installed: /var/log/xray/error.log installed: /etc/systemd/system/xray.service installed: /etc/systemd/system/xray@.service removed: /tmp/tmp.S3mHoPXvIj info: Xray v1.1.2 is installed. You may need to execute a command to remove dependent software: apt purge curl unzip Please execute the command: systemctl enable xray; systemctl start xray 解决SSL证书权限不足 ...

九月 28, 2020 · admin