├── Dockerfile ├── Dockerfile.withoutNodejs ├── LICENSE ├── README.md ├── conf ├── default-ssl.conf ├── default.conf ├── nginx.conf ├── nginx_swoole.conf ├── php-fpm.conf └── supervisord.conf ├── start.sh └── start.withoutNodejs.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.withoutNodejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/Dockerfile.withoutNodejs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/README.md -------------------------------------------------------------------------------- /conf/default-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/conf/default-ssl.conf -------------------------------------------------------------------------------- /conf/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/conf/default.conf -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/nginx_swoole.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/conf/nginx_swoole.conf -------------------------------------------------------------------------------- /conf/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/conf/php-fpm.conf -------------------------------------------------------------------------------- /conf/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/conf/supervisord.conf -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/start.sh -------------------------------------------------------------------------------- /start.withoutNodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tangramor/nginx-php8-fpm/HEAD/start.withoutNodejs.sh --------------------------------------------------------------------------------