This commit is contained in:
Andras Bacsai
2024-12-09 15:19:33 +01:00
parent 8f48f84bdf
commit d641975040
2 changed files with 13 additions and 2 deletions

View File

@@ -96,8 +96,7 @@ RUN mkdir -p /usr/local/bin && \
chmod +x /usr/local/bin/cloudflared
# Configure PHP
RUN echo 'upload_max_filesize=256M' > /usr/local/etc/php/conf.d/upload-limits.ini && \
echo 'post_max_size=256M' >> /usr/local/etc/php/conf.d/upload-limits.ini
COPY docker/production/etc/php/conf.d/zzz-custom-php.ini /usr/local/etc/php/conf.d/zzz-custom-php.ini
ENV PHP_OPCACHE_ENABLE=1
# Copy application files from previous stages
@@ -115,8 +114,11 @@ COPY --chown=www-data:www-data public ./public
COPY --chown=www-data:www-data routes ./routes
COPY --chown=www-data:www-data storage ./storage
COPY --chown=www-data:www-data templates ./templates
COPY --chown=www-data:www-data resources/views ./resources/views
COPY --chown=www-data:www-data artisan artisan
RUN composer dump-autoload
# Configure Nginx and S6 overlay
COPY docker/production/etc/nginx/conf.d/custom.conf /etc/nginx/conf.d/custom.conf
COPY docker/production/etc/nginx/site-opts.d/http.conf /etc/nginx/site-opts.d/http.conf

View File

@@ -0,0 +1,9 @@
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT & ~E_NOTICE
error_log = /var/www/html/storage/logs/php-error.log
log_errors = On
log_errors_max_len = 8192
ignore_repeated_errors = On
ignore_repeated_source = On
upload_max_filesize = 256M
post_max_size = 256M