Skip to content

Latest commit

 

History

History
95 lines (78 loc) · 3.19 KB

File metadata and controls

95 lines (78 loc) · 3.19 KB

README | R4S | 360v6

R4S

某些依赖自带库不包含,需要加入下面自定义源再进行安装下载插件,取消签名检测

换源

src/gz reboot_base http://mirrors.cloud.tencent.com/lede/releases/19.07.8/packages/aarch64_cortex-a53/base
src/gz reboot_luci http://mirrors.cloud.tencent.com/lede/releases/18.06.9/packages/aarch64_cortex-a53/luci
src/gz reboot_packages http://mirrors.cloud.tencent.com/lede/releases/19.07.8/packages/aarch64_cortex-a53/packages
src/gz reboot_routing http://mirrors.cloud.tencent.com/lede/releases/19.07.8/packages/aarch64_cortex-a53/routing
src/gz reboot_telephony http://mirrors.cloud.tencent.com/lede/releases/19.07.8/packages/aarch64_cortex-a53/telephony

常用luci-app

含:ttyduhttpd

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/base.sh)"

luci-app-alist

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/alist.sh)"

luci-app-statistics

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/statistics.sh)"

luci-app-poweroff

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/poweroff.sh)"

luci-app-aliyundrive-fuse

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/aliyundrive-fuse.sh)"

luci-app-aliyundrive-webdav

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/aliyundrive-webdav.sh)"

luci-app-filetransfer

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/filetransfer.sh)"

luci-app-ftpserver

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/ftpserver.sh)"

luci-app-alidns

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/alidns.sh)"

luci-app-nps、luci-app-npc

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/nps-npc.sh)"

luci-app-adguardhome

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/adguardhome.sh)"

luci-app-ttnode

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/ttnode.sh)"

luci-app-onliner

sh -c "$(curl -sSL https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/luci-app/onliner.sh)"

使用nginx替换uhttpd

默认的uhttpd响应比较慢,建议替换为nginx。 先停止uhttp修改端口或者卸载uhttp,否则会端口冲突

wget https://cdn.jsdelivr.net/gh/Hongseme/OpenWrt@main/R4S/nginx.sh && sh nginx.sh && rm nginx.sh

若需要uhttpd跟nginx同时使用,nginx需要修改默认80 443 端口防止跟uhttpd冲突 这时只要安装nginx就可以了,不需要luci-nginx模块

/etc/init.d/uhttpd stop
opkg update && opkg install nginx