安装 soga 后端

Posted on by

安装 soga 后端 https://github.com/sprov065/soga docker 启动方式请查看:https://github.com/sprov065/soga/wiki soga 后端是一个支持 v2ray 和 trojan 的后端 v2ray soga 后端针对 v2ray 占内存的特点使用 C 语言特别优化了 v2ray 的内存占用,在相同用户数量和 alterId 下,相对于原版 v2ray 来说可节省 40-60% 的内存空间,用户数量越多,节省的内存就越多。 trojan trojan 相对于 v2ray 来说更轻量和高效,在大量用户下也几乎不占多少内存,推荐优先选择 trojan。 一键安装,安装完成不要着急启动,查看后面的教程进行对接 bash

How to set V2ray

Posted on by

1 卸载/关闭Ubuntu防火墙 1.1 关闭ubuntu的防火墙(UFW) ufw disable 1.2 关闭ubuntu的防火墙(IP TABLES) iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT iptables -F 1.3 卸载ubuntu的防火墙(IP TABLES) apt-get remove iptables 2 安装V2ray bash <(curl -L -s https://mirror.hilz.top/github/v2ray_install/go1.sh) 3 安装BBRplus内核 为了加速TCP,可不安装。 wget –no-check-certificate -O tcp.sh https://github.com/cx9208/Linux-NetSpeed/raw/master/tcp.sh && chmod +x tcp.sh && ./tcp.sh 4 安装Caddy curl https://getcaddy.com |…

如何安装V2ray(新版)

Posted on by

由于旧的V2ray脚本已不再维护因此我写了这篇新版的供大家参考会给出实例 新V2ray地址 https://github.com/v2fly/fhs-install-v2ray 1 卸载/关闭Ubuntu防火墙 1.1 关闭ubuntu的防火墙(UFW) ufw disable 1.2 关闭ubuntu的防火墙(IP TABLES) iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT iptables -F 1.3 卸载ubuntu的防火墙(IP TABLES) apt-get remove iptables 2 安装V2ray bash <(curl -L https://raw.githubusercontent.com/v2fly/fhs-install-v2ray/master/install-release.sh) 注意:和旧的V2ray不同,文件目录有些改变 installed: /usr/local/bin/v2ray installed: /usr/local/bin/v2ctl installed: /usr/local/share/v2ray/geoip.dat installed: /usr/local/share/v2ray/geosite.dat installed: /usr/local/etc/v2ray/config.json installed: /var/log/v2ray/ installed: /var/log/v2ray/access.log installed: /var/log/v2ray/error.log installed: /etc/systemd/system/v2ray.service installed:…