We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5203db1 commit 48cd222Copy full SHA for 48cd222
Dockerfile
@@ -99,7 +99,10 @@ RUN chown www-data:www-data /var/www/html/w/images
99
100
# Fix permissions for cache https://github.com/MaRDI4NFDI/portal-compose/pull/563
101
RUN chmod 777 /var/www/html/w/cache
102
-COPY mardi_php.ini /usr/local/etc/php/conf.d/mardi_php.ini
+COPY mardi_php.ini /usr/local/etc/php/conf.d/mardi_php.ini
103
+
104
+# Disable access logs in mediawiki container
105
+COPY php-fpm-logging.conf /usr/local/etc/php-fpm.d/zz-logging.conf
106
107
ENV TZ=Europe/Berlin
108
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
php-fpm-logging.conf
@@ -0,0 +1,3 @@
1
+[www]
2
+; Disable access log
3
+access.log = /dev/null
0 commit comments