Ajustes documentacao

This commit is contained in:
HalbeBruno
2026-03-17 11:20:17 -03:00
parent 1434523bab
commit 64f8524cd1
7 changed files with 100 additions and 16 deletions

View File

@@ -18,6 +18,9 @@ RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# Install PHP extensions
RUN docker-php-ext-install pdo_mysql mbstring exif pcntl bcmath gd curl
# Configure PHP upload limits
RUN echo "upload_max_filesize = 40M\npost_max_size = 50M" > /usr/local/etc/php/conf.d/uploads.ini
# Enable Apache mod_rewrite
RUN a2enmod rewrite