This commit is contained in:
xinatorus
2020-05-15 22:37:17 +02:00
parent c3d8a211ed
commit ded8a698f0
5 changed files with 76 additions and 0 deletions

3
docker/php/Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM php:7.2-fpm
RUN docker-php-ext-install mysqli

12
docker/php/www.conf Normal file
View File

@@ -0,0 +1,12 @@
[www]
user = www-data
group = www-data
listen = nginx:9000
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3