├── .gitattributes ├── .gitignore ├── Dockerfile.builder ├── LICENSE ├── README.md ├── confs ├── nginx-duckduckgo.conf └── nginx-wikipedia.conf ├── create_proxies.py ├── nginx-default.conf ├── opctl.sh └── proxies.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/Dockerfile.builder -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/README.md -------------------------------------------------------------------------------- /confs/nginx-duckduckgo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/confs/nginx-duckduckgo.conf -------------------------------------------------------------------------------- /confs/nginx-wikipedia.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/confs/nginx-wikipedia.conf -------------------------------------------------------------------------------- /create_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/create_proxies.py -------------------------------------------------------------------------------- /nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/nginx-default.conf -------------------------------------------------------------------------------- /opctl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/opctl.sh -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KeyWeeUsr/OnionProxy/HEAD/proxies.txt --------------------------------------------------------------------------------