File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,9 @@ RUN chown www-data:www-data /var/www/html/w/images
101101RUN chmod 777 /var/www/html/w/cache
102102COPY mardi_php.ini /usr/local/etc/php/conf.d/mardi_php.ini
103103
104- # Disable access logs in mediawiki container
105- COPY php-fpm-logging.conf /usr/local/etc/php-fpm.d/zz-logging.conf
104+ # PHP-FPM configuration
105+ COPY ./php-fpm/logging.conf /usr/local/etc/php-fpm.d/zz-logging.conf
106+ COPY ./php-fpm/${ENVIRONMENT}/performance.conf /usr/local/etc/php-fpm.d/zz-performance.conf
106107
107108ENV TZ=Europe/Berlin
108109RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
File renamed without changes.
Original file line number Diff line number Diff line change 1+ [www]
2+ pm = dynamic
3+ pm.max_children = 15
4+ pm.start_servers = 2
5+ pm.min_spare_servers = 2
6+ pm.max_spare_servers = 6
7+ pm.max_requests = 500
You can’t perform that action at this time.
0 commit comments