Increase opcache.max_accelerated_files to 50000 in Docker container.

This commit is contained in:
Michael Stenta 2017-01-21 21:31:08 -05:00
parent e080489275
commit 5ec4c9f951
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ RUN apt-get update && apt-get install -y libpng12-dev libjpeg-dev libpq-dev \
RUN { \
echo 'opcache.memory_consumption=128'; \
echo 'opcache.interned_strings_buffer=8'; \
echo 'opcache.max_accelerated_files=4000'; \
echo 'opcache.max_accelerated_files=50000'; \
echo 'opcache.revalidate_freq=60'; \
echo 'opcache.fast_shutdown=1'; \
echo 'opcache.enable_cli=1'; \