16 lines
361 B
Text
16 lines
361 B
Text
|
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"]
|