宝塔安装v2b
环境要求:自行百度安装,或通过宝塔安装,Nginx,MySQL 5.6,PHP 7.4
需额外安装两个扩展:文章源自IT老刘-https://itlao6.com/11219.html
Redis、fileinfo
解除PHP函数限制,需解除四个禁用函数:文章源自IT老刘-https://itlao6.com/11219.html
putenv、proc_open、pcntl_alarm、pcntl_signal
创建网站目录并删除目录下自动生成的所有文件文章源自IT老刘-https://itlao6.com/11219.html
在ssh进入网站目录文章源自IT老刘-https://itlao6.com/11219.html
cd /www/wwwroot/网站目录/
克隆V2Board项目:文章源自IT老刘-https://itlao6.com/11219.html
git clone https://github.com/v2board/v2board.git ./
依赖下载:文章源自IT老刘-https://itlao6.com/11219.html
wget https://getcomposer.org/download/1.9.0/composer.phar php composer.phar config repo.packagist composer https://mirrors.aliyun.com/composer/ php composer.phar install
安装V2Board面板:文章源自IT老刘-https://itlao6.com/11219.html
php artisan v2board:install
配置站点目录及伪静态文章源自IT老刘-https://itlao6.com/11219.html
设置站点运行目录为文章源自IT老刘-https://itlao6.com/11219.html
/public
设置站点伪静态文章源自IT老刘-https://itlao6.com/11219.html
location /downloads { } location / { try_files $uri $uri/ /index.php$is_args$query_string; } location ~ .*\.(js|css)?$ { expires 1h; error_log off; access_log /dev/null; }
配置计划任务和启动队列服务文章源自IT老刘-https://itlao6.com/11219.html
计划任务文章源自IT老刘-https://itlao6.com/11219.html
(Cron) -> Shell脚本
1分钟运行一次:文章源自IT老刘-https://itlao6.com/11219.html
php /www/wwwroot/网站目录/artisan schedule:run
软件商店 -> Supervisor管理器文章源自IT老刘-https://itlao6.com/11219.html
运行用户:文章源自IT老刘-https://itlao6.com/11219.html
www
运行目录:文章源自IT老刘-https://itlao6.com/11219.html
/www/wwwroot/网站/
命令:文章源自IT老刘-https://itlao6.com/11219.html
php artisan horizon
网站目录权限重新设置755文章源自IT老刘-https://itlao6.com/11219.html
致此宝塔安装V2Board完毕文章源自IT老刘-https://itlao6.com/11219.html
主题
附件下载里提供一个Bob-Theme-Argon主题(文章图片的主题)文章源自IT老刘-https://itlao6.com/11219.html
解压到
/public/theme/目录下
如果Gravatar头像经常加载不出来,可以更换地址
路径为
/app/Http/Controllers/User/UserController.php
替换为
https://sdn.geekzu.org/avatar/
节点安装
一键安装 更新
将域名托管到cloudflared
同步时间(重要)
v2ray 节点需要进行时间同步,时间若与客户端相差太大则无法连接
CentOS 7
yum install -y ntp systemctl enable ntpd ntpdate -q 0.rhel.pool.ntp.org systemctl restart ntpd
第一步,在面板添加一个节点
后台 >节点管理 >添加节点 节点名称:随便填什么 权限组:随便填什么 节点地址:填cf的ip或者伪装的域名 TLS:伪装的域名 端口:443 传输协议:选择websocket 配置协议: { "path": "/随便", "headers": { "Host": "伪装的域名" } }
第二步,配置 XrayR
第一次安装完成后,编辑配置文件:
配置文件位置在
/etc/XrayR/config.yml
基础配置
Log: Level: warning # Log level: none, error, warning, info, debug AccessPath: # /etc/XrayR/access.Log ErrorPath: # /etc/XrayR/error.log DnsConfigPath: # /etc/XrayR/dns.json # Path to dns config, check https://xtls.github.io/config/dns.html for help RouteConfigPath: #/etc/XrayR/route.json # Path to route config, check https://xtls.github.io/config/routing.html for help InboundConfigPath: #/etc/XrayR/custom_inbound.json # Path to custom inbound config, check https://xtls.github.io/config/inbound.html for help OutboundConfigPath: #/etc/XrayR/custom_outbound.json # Path to custom outbound config, check https://xtls.github.io/config/outbound.html for help ConnectionConfig: Handshake: 4 # Handshake time limit, Second ConnIdle: 30 # Connection idle time limit, Second UplinkOnly: 2 # Time limit when the connection downstream is closed, Second DownlinkOnly: 4 # Time limit when the connection is closed after the uplink is closed, Second BufferSize: 64 # The internal cache size of each connection, kB Nodes: - PanelType: "NewV2board" ## 对接的面板类型: SSpanel, V2board, NewV2board, PMpanel, Proxypanel, V2RaySocks ApiConfig: ApiHost: "https://****.com" ## 面板域名地址,或自定义个专用后端对接不提供访问的域名 ApiKey: "*****" ## 面板设置的通讯密钥 NodeID: 1 ## 前端节点id NodeType: V2ray ## 对接的节点类型:可选V2ray, Shadowsocks, Trojan Timeout: 30 # Timeout for the api request EnableVless: false # Enable Vless for V2ray Type EnableXTLS: false # Enable XTLS for V2ray and Trojan SpeedLimit: 0 # Mbps, Local settings will replace remote settings DeviceLimit: 0 # Local settings will replace remote settings ControllerConfig: ListenIP: 0.0.0.0 # IP address you want to listen UpdatePeriodic: 100 # Time to update the nodeinfo, how many sec. CertConfig: CertMode: dns # Option about how to get certificate: none, file, http, dns. Choose "none" will forcedly disable the tls config. CertDomain: "***.com" # 伪装的域名 Provider: cloudflare # DNS cert provider, Get the full support list here: https://go-acme.github.io/lego/dns/ Email: test@me.com DNSEnv: # DNS ENV option used by DNS provider CLOUDFLARE_EMAIL: test@me.com ##CF登录邮箱 CLOUDFLARE_API_KEY: 57b4d8ec82ec3e ##CF全局api
第三步启动 XrayR
系统级操作
centos打开端口的方法
关闭防火墙(重启后永久生效):
使用以下命令可以禁用CentOS的防火墙:
打开某个端口(以443为例)
开启端口
iptables -A INPUT -p tcp --dport 443 -j ACCEPT
保存并重启防火墙
打开49152~65534之间的端口
致此所有步骤均已完成。
最后说一下,这里有很多的坑,要自己慢慢的去体会。原谅我这种东西不能出视频教程。
正所谓师傅领进门,修行在个人。加油!
陕西省西安市 16F
发电房得奋斗
新加坡 15F
assajdksak啊dasd啊
江苏省常州市 14F
谢谢
瑞典 13F
感谢分享
瑞典 12F
111好
英国 11F
强强强强q
美国 10F
感谢大佬
新加坡 9F
试试试试试试试试试试
香港 8F
嘎嘎嘎嘎嘎不悍VVVV
美国 7F
感谢大佬教程
福建省厦门市 6F
感谢分享
美国 5F
你好
美国 4F
教程很详细,就是xrayr启动失败 呜呜呜
美国 B1
@ xrayr 嗯嗯
美国加利福尼亚州圣何塞 3F
5555好强
广东省深圳市 2F
感谢分享啊啊
广东省江门市 1F
6666666666太强了