├── Dockerfile ├── LICENSE ├── README.md ├── server └── etc │ ├── nginx │ ├── conf.d │ │ └── default.conf │ └── nginx.conf │ └── php │ ├── php-fpm.conf │ ├── php-fpm.d │ └── www.conf │ └── php.ini └── src ├── 404.html └── index.php /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanesanders/docker-nginx-fpm/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanesanders/docker-nginx-fpm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # docker-nginx-fpm -------------------------------------------------------------------------------- /server/etc/nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanesanders/docker-nginx-fpm/HEAD/server/etc/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /server/etc/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanesanders/docker-nginx-fpm/HEAD/server/etc/nginx/nginx.conf -------------------------------------------------------------------------------- /server/etc/php/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanesanders/docker-nginx-fpm/HEAD/server/etc/php/php-fpm.conf -------------------------------------------------------------------------------- /server/etc/php/php-fpm.d/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanesanders/docker-nginx-fpm/HEAD/server/etc/php/php-fpm.d/www.conf -------------------------------------------------------------------------------- /server/etc/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanesanders/docker-nginx-fpm/HEAD/server/etc/php/php.ini -------------------------------------------------------------------------------- /src/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnathanesanders/docker-nginx-fpm/HEAD/src/404.html -------------------------------------------------------------------------------- /src/index.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------