├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── config ├── .bashrc ├── conf.d │ └── config-1.conf ├── nginx.conf ├── php.ini ├── sites-enabled │ └── default └── supervisord.conf ├── docker-compose.yml └── index.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/README.md -------------------------------------------------------------------------------- /config/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/config/.bashrc -------------------------------------------------------------------------------- /config/conf.d/config-1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/config/conf.d/config-1.conf -------------------------------------------------------------------------------- /config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/config/nginx.conf -------------------------------------------------------------------------------- /config/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/config/php.ini -------------------------------------------------------------------------------- /config/sites-enabled/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/config/sites-enabled/default -------------------------------------------------------------------------------- /config/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/config/supervisord.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewmclagan/nginx-hhvm-docker/HEAD/index.php --------------------------------------------------------------------------------