├── .gitignore ├── Makefile ├── README.md ├── docs ├── enable-https.md └── xdebug-support.md ├── nginx-ssl.Dockerfile ├── nginx-ssl.conf ├── xdebug.Dockerfile └── xdebug.ini /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnlinh/docker-php/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnlinh/docker-php/HEAD/README.md -------------------------------------------------------------------------------- /docs/enable-https.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnlinh/docker-php/HEAD/docs/enable-https.md -------------------------------------------------------------------------------- /docs/xdebug-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnlinh/docker-php/HEAD/docs/xdebug-support.md -------------------------------------------------------------------------------- /nginx-ssl.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnlinh/docker-php/HEAD/nginx-ssl.Dockerfile -------------------------------------------------------------------------------- /nginx-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnlinh/docker-php/HEAD/nginx-ssl.conf -------------------------------------------------------------------------------- /xdebug.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnlinh/docker-php/HEAD/xdebug.Dockerfile -------------------------------------------------------------------------------- /xdebug.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnlinh/docker-php/HEAD/xdebug.ini --------------------------------------------------------------------------------