├── .gitignore ├── conf.d └── .gitignore ├── data └── .gitignore ├── docker-compose.yaml ├── es1config └── elasticsearch.yml ├── esconfig └── elasticsearch.yml ├── esdata └── .gitignore ├── mysqlconf ├── conf.d │ └── .gitignore └── my.cnf ├── nginx.conf └── site ├── .gitignore └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxhy123/docker-debian-nginx-phpfpm-mysql/HEAD/.gitignore -------------------------------------------------------------------------------- /conf.d/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxhy123/docker-debian-nginx-phpfpm-mysql/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /es1config/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxhy123/docker-debian-nginx-phpfpm-mysql/HEAD/es1config/elasticsearch.yml -------------------------------------------------------------------------------- /esconfig/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxhy123/docker-debian-nginx-phpfpm-mysql/HEAD/esconfig/elasticsearch.yml -------------------------------------------------------------------------------- /esdata/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | -------------------------------------------------------------------------------- /mysqlconf/conf.d/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | -------------------------------------------------------------------------------- /mysqlconf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxhy123/docker-debian-nginx-phpfpm-mysql/HEAD/mysqlconf/my.cnf -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxhy123/docker-debian-nginx-phpfpm-mysql/HEAD/nginx.conf -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- 1 | # Created by .ignore support plugin (hsz.mobi) 2 | -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qxhy123/docker-debian-nginx-phpfpm-mysql/HEAD/site/index.html --------------------------------------------------------------------------------