├── .gitignore ├── LICENSE ├── README.md ├── alpine-fat └── Dockerfile └── nginx.conf /.gitignore: -------------------------------------------------------------------------------- 1 | *.sh 2 | !auto-reload-nginx.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duythongle/k8s-openresty-streaming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duythongle/k8s-openresty-streaming/HEAD/README.md -------------------------------------------------------------------------------- /alpine-fat/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duythongle/k8s-openresty-streaming/HEAD/alpine-fat/Dockerfile -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duythongle/k8s-openresty-streaming/HEAD/nginx.conf --------------------------------------------------------------------------------