├── .github └── FUNDING.yml ├── .gitignore ├── Dockerfile ├── README.md ├── UNLICENSE ├── haproxy.cfg.erb ├── newnym.sh ├── start.rb └── uncachable /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mattes 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattes/rotating-proxy/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattes/rotating-proxy/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattes/rotating-proxy/HEAD/UNLICENSE -------------------------------------------------------------------------------- /haproxy.cfg.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattes/rotating-proxy/HEAD/haproxy.cfg.erb -------------------------------------------------------------------------------- /newnym.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattes/rotating-proxy/HEAD/newnym.sh -------------------------------------------------------------------------------- /start.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattes/rotating-proxy/HEAD/start.rb -------------------------------------------------------------------------------- /uncachable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattes/rotating-proxy/HEAD/uncachable --------------------------------------------------------------------------------