We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba6b0af commit 9e10fe3Copy full SHA for 9e10fe3
.docker/os2web/Dockerfile
@@ -56,6 +56,9 @@ RUN echo '<?php $settings["project_env"] = PROD_ENV; ' > /opt/drupal/web/sites/d
56
# Adding custom apache configuration with PHP value and log settings.
57
COPY apache/000-default.conf /etc/apache2/sites-enabled/000-default.conf
58
59
+# Additional PHP configuration for both CLI and Apache
60
+COPY php/os2web-php.ini /usr/local/etc/php/conf.d/os2web-php.ini
61
+
62
# Addjusting output channels for access and error log.
63
RUN ln -sf /dev/stderr /var/log/apache2/error.log; \
64
ln -sf /dev/stdout /var/log/apache2/access.log; \
.docker/os2web/php/os2web-php.ini
@@ -0,0 +1 @@
1
+memory_limit=512M
0 commit comments