FROM php:8.2-apache # Modülleri aktif et RUN a2enmod rewrite expires deflate headers # Apache Site Konfigürasyonunu doğrudan güncelle (CSS ve JS zorlaması ile) RUN echo '\n\ DocumentRoot /var/www/html\n\ \n\ AllowOverride All\n\ Require all granted\n\ \n\ # Gzip ve Cache ayarları\n\ \n\ ExpiresActive On\n\ ExpiresDefault "access plus 1 month"\n\ ExpiresByType image/jpg "access plus 1 year"\n\ ExpiresByType image/jpeg "access plus 1 year"\n\ ExpiresByType image/png "access plus 1 year"\n\ ExpiresByType image/webp "access plus 1 year"\n\ ExpiresByType font/woff2 "access plus 1 year"\n\ ExpiresByType text/css "access plus 1 year"\n\ ExpiresByType application/javascript "access plus 1 year"\n\ \n\ \n\ \n\ Header set Cache-Control "max-age=31536000, public, immutable"\n\ \n\ \n\ ' > /etc/apache2/sites-available/000-default.conf # Proje dosyalarını kopyala COPY . /var/www/html/ RUN chown -R www-data:www-data /var/www/html/ WORKDIR /var/www/html EXPOSE 80