├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── examples ├── allow_images.json └── allow_info.json ├── main ├── nginx └── nginx.conf ├── requirements.txt ├── src ├── __init__.py ├── acl.py ├── init.py └── nginx.py └── templates └── nginx-acl.tmpl.conf /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/README.md -------------------------------------------------------------------------------- /examples/allow_images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/examples/allow_images.json -------------------------------------------------------------------------------- /examples/allow_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/examples/allow_info.json -------------------------------------------------------------------------------- /main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/main -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | Jinja2 -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/acl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/src/acl.py -------------------------------------------------------------------------------- /src/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/src/init.py -------------------------------------------------------------------------------- /src/nginx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/src/nginx.py -------------------------------------------------------------------------------- /templates/nginx-acl.tmpl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djenriquez/sherpa/HEAD/templates/nginx-acl.tmpl.conf --------------------------------------------------------------------------------