Add apache/Dockerfile

This commit is contained in:
Martijn de Boer 2024-08-12 17:16:48 +02:00
parent 2a85c67185
commit 7438375aa8

16
apache/Dockerfile Normal file
View file

@ -0,0 +1,16 @@
FROM ubuntu:20.04
RUN apt-get update && apt-get install -y apache2 ssl-cert
RUN a2enmod ssl proxy proxy_fcgi rewrite
COPY apache2.conf /etc/apache2/apache2.conf
COPY php-fpm.conf /etc/apache2/conf-available/php-fpm.conf
RUN a2enconf php-fpm
RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
EXPOSE 80 443
CMD ["apache2ctl", "-D", "FOREGROUND"]