├── .dockerignore ├── .github └── workflows │ ├── dockerhub-description.yaml │ └── latest.yaml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── default.conf ├── html ├── css │ ├── normalize.min.css │ └── skeleton.min.css ├── images │ └── favicon.png └── index.php ├── start.sh └── supervisord.conf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/dockerhub-description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/.github/workflows/dockerhub-description.yaml -------------------------------------------------------------------------------- /.github/workflows/latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/.github/workflows/latest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/README.md -------------------------------------------------------------------------------- /default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/default.conf -------------------------------------------------------------------------------- /html/css/normalize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/html/css/normalize.min.css -------------------------------------------------------------------------------- /html/css/skeleton.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/html/css/skeleton.min.css -------------------------------------------------------------------------------- /html/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/html/images/favicon.png -------------------------------------------------------------------------------- /html/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/html/index.php -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/start.sh -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyveo/nginx-php-fpm/HEAD/supervisord.conf --------------------------------------------------------------------------------