osnosn / 3proxy-openwrt

3proxy v0.8.13 v0.9.3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

3proxy running on Openwrt/LEDE

The successfully compiled ipk package is installed in openwrt.
There is only one executable "/usr/bin/3proxy".
编译后的ipk,安装到openwrt内,只有一个 "/usr/bin/3proxy" 的执行文件。
需要自己写配置文件,启动脚本。

编译/Compile

# Using the SDK to cross compile packages
cd openwrt
git clone --depth 1 https://github.com/osnosn/3proxy-openwrt.git package/3proxy 
#git clone -b v0.9.4-20220831 --depth 1 https://github.com/osnosn/3proxy-openwrt.git package/3proxy 
rm -rf tmp/
./scripts/feeds update -a
./scripts/feeds install -a
make menuconfig
# find it in "Network" -> "Web Servers/Proxies" -> "3proxy"
make package/3proxy/compile V=s
# found ipk in bin/packages/.....

OR

# Using the SDK to cross compile packages
cd openwrt
git clone https://github.com/osnosn/3proxy-openwrt.git package/3proxy 
# OR
#git clone https://github.com/osnosn/3proxy-openwrt.git feeds/packages/net/3proxy
cd  package/3proxy
#git checkout v0.9-devel
#git checkout v0.8.13
#git checkout v0.9.3
#git checkout v0.9.4
git checkout v0.9.4-20220831
cd  ../../
rm -rf tmp/
./scripts/feeds update -a
./scripts/feeds install -a
make menuconfig
# find it in "Network" -> "Web Servers/Proxies" -> "3proxy"
make package/3proxy/compile V=s
# found ipk in bin/packages/.....

About

3proxy v0.8.13 v0.9.3


Languages

Language:Makefile 100.0%