├── Procfile ├── bin ├── compile ├── detect ├── nginx-cedar ├── nginx-cedar-14 ├── release └── start-nginx ├── changelog.md ├── config ├── mime.types └── nginx.conf.erb ├── readme.md └── scripts └── build_nginx.sh /Procfile: -------------------------------------------------------------------------------- 1 | web: scripts/build_nginx.sh 2 | -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/bin/detect -------------------------------------------------------------------------------- /bin/nginx-cedar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/bin/nginx-cedar -------------------------------------------------------------------------------- /bin/nginx-cedar-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/bin/nginx-cedar-14 -------------------------------------------------------------------------------- /bin/release: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | echo "--- {}" 3 | -------------------------------------------------------------------------------- /bin/start-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/bin/start-nginx -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/changelog.md -------------------------------------------------------------------------------- /config/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/config/mime.types -------------------------------------------------------------------------------- /config/nginx.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/config/nginx.conf.erb -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/build_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandotsmith/nginx-buildpack/HEAD/scripts/build_nginx.sh --------------------------------------------------------------------------------