├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README-EN.md ├── README.md ├── _config.yml ├── conf ├── conf.d │ ├── .gitignore │ ├── certs │ │ └── localhost │ │ │ ├── gencert.sh │ │ │ ├── localhost.crt │ │ │ ├── localhost.csr │ │ │ ├── localhost.key │ │ │ └── localhost.origin.key │ ├── laravel.conf.sample │ ├── localhost.conf │ ├── localhost_https.conf │ └── xhgui.conf ├── mysql.cnf ├── nginx.conf ├── php-fpm.conf ├── php.ini └── redis.conf ├── docker-compose-sample.yml ├── docs ├── dnmp-plus.png ├── localhost.png ├── xhgui1.png ├── xhgui2.png └── xhgui3.png ├── env.sample ├── extensions ├── install.sh ├── php56.sh ├── php72.sh ├── redis-4.1.1.tgz ├── swoole-2.0.11.tgz ├── swoole-4.2.1.tgz ├── tideways-4.1.7.tar.gz ├── xdebug-2.5.5.tgz └── xdebug-2.6.1.tgz ├── log ├── nginx │ └── .gitignore ├── php │ └── .gitignore └── xhprof │ └── .gitignore ├── mongo └── .gitignore ├── mysql └── .gitignore ├── travis-build.sh └── www └── localhost └── index.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /README-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/README-EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/_config.yml -------------------------------------------------------------------------------- /conf/conf.d/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/.gitignore -------------------------------------------------------------------------------- /conf/conf.d/certs/localhost/gencert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/certs/localhost/gencert.sh -------------------------------------------------------------------------------- /conf/conf.d/certs/localhost/localhost.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/certs/localhost/localhost.crt -------------------------------------------------------------------------------- /conf/conf.d/certs/localhost/localhost.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/certs/localhost/localhost.csr -------------------------------------------------------------------------------- /conf/conf.d/certs/localhost/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/certs/localhost/localhost.key -------------------------------------------------------------------------------- /conf/conf.d/certs/localhost/localhost.origin.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/certs/localhost/localhost.origin.key -------------------------------------------------------------------------------- /conf/conf.d/laravel.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/laravel.conf.sample -------------------------------------------------------------------------------- /conf/conf.d/localhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/localhost.conf -------------------------------------------------------------------------------- /conf/conf.d/localhost_https.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/localhost_https.conf -------------------------------------------------------------------------------- /conf/conf.d/xhgui.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/conf.d/xhgui.conf -------------------------------------------------------------------------------- /conf/mysql.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/mysql.cnf -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/php-fpm.conf -------------------------------------------------------------------------------- /conf/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/php.ini -------------------------------------------------------------------------------- /conf/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/conf/redis.conf -------------------------------------------------------------------------------- /docker-compose-sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/docker-compose-sample.yml -------------------------------------------------------------------------------- /docs/dnmp-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/docs/dnmp-plus.png -------------------------------------------------------------------------------- /docs/localhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/docs/localhost.png -------------------------------------------------------------------------------- /docs/xhgui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/docs/xhgui1.png -------------------------------------------------------------------------------- /docs/xhgui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/docs/xhgui2.png -------------------------------------------------------------------------------- /docs/xhgui3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/docs/xhgui3.png -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/env.sample -------------------------------------------------------------------------------- /extensions/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/extensions/install.sh -------------------------------------------------------------------------------- /extensions/php56.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/extensions/php56.sh -------------------------------------------------------------------------------- /extensions/php72.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/extensions/php72.sh -------------------------------------------------------------------------------- /extensions/redis-4.1.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/extensions/redis-4.1.1.tgz -------------------------------------------------------------------------------- /extensions/swoole-2.0.11.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/extensions/swoole-2.0.11.tgz -------------------------------------------------------------------------------- /extensions/swoole-4.2.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/extensions/swoole-4.2.1.tgz -------------------------------------------------------------------------------- /extensions/tideways-4.1.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/extensions/tideways-4.1.7.tar.gz -------------------------------------------------------------------------------- /extensions/xdebug-2.5.5.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/extensions/xdebug-2.5.5.tgz -------------------------------------------------------------------------------- /extensions/xdebug-2.6.1.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/extensions/xdebug-2.6.1.tgz -------------------------------------------------------------------------------- /log/nginx/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /log/php/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /log/xhprof/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /mongo/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /mysql/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/travis-build.sh -------------------------------------------------------------------------------- /www/localhost/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/dnmp-plus/HEAD/www/localhost/index.php --------------------------------------------------------------------------------