Modificacion del supervisor y docker file postmaxSize

This commit is contained in:
2026-05-09 07:26:47 -06:00
parent 9697a6b20a
commit e7ca2c29f0
2 changed files with 4 additions and 5 deletions
+2 -3
View File
@@ -15,11 +15,10 @@ RUN mkdir -p storage/framework/{sessions,views,cache} \
&& mkdir -p storage/app/livewire-tmp \
&& chmod -R 775 storage bootstrap/cache
RUN echo "upload_max_filesize=20M" > /usr/local/etc/php/conf.d/uploads.ini \
&& echo "post_max_size=25M" >> /usr/local/etc/php/conf.d/uploads.ini
RUN php artisan storage:link
RUN echo "upload_max_filesize=20M\npost_max_size=25M" > /app/php.ini
COPY supervisord.conf /etc/supervisord.conf
EXPOSE 8080