├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── nginx.conf └── tests ├── mitmtest.sh └── pypi_intercept.py /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntsaninja/nginx_pypi_cache/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntsaninja/nginx_pypi_cache/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntsaninja/nginx_pypi_cache/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntsaninja/nginx_pypi_cache/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntsaninja/nginx_pypi_cache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntsaninja/nginx_pypi_cache/HEAD/README.md -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntsaninja/nginx_pypi_cache/HEAD/nginx.conf -------------------------------------------------------------------------------- /tests/mitmtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntsaninja/nginx_pypi_cache/HEAD/tests/mitmtest.sh -------------------------------------------------------------------------------- /tests/pypi_intercept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hauntsaninja/nginx_pypi_cache/HEAD/tests/pypi_intercept.py --------------------------------------------------------------------------------