Opera Mini Server Mirror with Golang
再一次,由于不想在服务器上安装php,决定自己用Go语言写一个Opera Mini的代理服务器,也算是练手吧~项目地址在https://github.com/chon219/opm-server-golang 编译 & 运行 go build server.go ./server & 设置iptables作为socket代理 iptables -t nat -A PREROUTING -p tcp -m tcp --dport 9003 -j DNAT --to-destination 141.0.11.253:1080 iptables -t nat -A …