├── .gitattributes ├── .github └── workflows │ ├── workflow-docker-manual.yml │ └── workflow-docker-release.yml ├── .gitignore ├── .shellcheckrc ├── Dockerfile ├── LICENSE ├── README.md └── run ├── local └── tools.sh ├── nobody ├── microsocks.sh ├── preruncheck.sh └── privoxy.sh └── root ├── iptable-init.sh ├── iptable.sh ├── openvpn.sh ├── openvpndown.sh ├── openvpnup.sh ├── prerunget.sh ├── start.sh ├── wireguard.sh ├── wireguarddown.sh └── wireguardup.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/workflow-docker-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/.github/workflows/workflow-docker-manual.yml -------------------------------------------------------------------------------- /.github/workflows/workflow-docker-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/.github/workflows/workflow-docker-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/.gitignore -------------------------------------------------------------------------------- /.shellcheckrc: -------------------------------------------------------------------------------- 1 | external-sources=true 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/README.md -------------------------------------------------------------------------------- /run/local/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/local/tools.sh -------------------------------------------------------------------------------- /run/nobody/microsocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/nobody/microsocks.sh -------------------------------------------------------------------------------- /run/nobody/preruncheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/nobody/preruncheck.sh -------------------------------------------------------------------------------- /run/nobody/privoxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/nobody/privoxy.sh -------------------------------------------------------------------------------- /run/root/iptable-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/iptable-init.sh -------------------------------------------------------------------------------- /run/root/iptable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/iptable.sh -------------------------------------------------------------------------------- /run/root/openvpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/openvpn.sh -------------------------------------------------------------------------------- /run/root/openvpndown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/openvpndown.sh -------------------------------------------------------------------------------- /run/root/openvpnup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/openvpnup.sh -------------------------------------------------------------------------------- /run/root/prerunget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/prerunget.sh -------------------------------------------------------------------------------- /run/root/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/start.sh -------------------------------------------------------------------------------- /run/root/wireguard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/wireguard.sh -------------------------------------------------------------------------------- /run/root/wireguarddown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/wireguarddown.sh -------------------------------------------------------------------------------- /run/root/wireguardup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/binhex/arch-int-vpn/HEAD/run/root/wireguardup.sh --------------------------------------------------------------------------------