2022-10-23 19:02:54 +02:00
|
|
|
from php:7.4.32-apache
|
2021-05-09 22:07:17 +02:00
|
|
|
|
2021-11-10 16:25:47 +01:00
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
git \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
RUN a2enmod remoteip rewrite \
|
|
|
|
&& echo "RemoteIPHeader X-Forwarded-For" > /etc/apache2/conf-available/remoteip.conf \
|
|
|
|
&& a2enconf remoteip \
|
|
|
|
&& sed -i -r 's/^ServerTokens .*/ServerTokens Prod/g' /etc/apache2/conf-available/security.conf \
|
|
|
|
&& sed -i -r 's/^ServerSignature .*/ServerSignature Off/g' /etc/apache2/conf-available/security.conf \
|
|
|
|
&& sed -i -E 's/^LogFormat "%h(.*)/LogFormat "%a\1/g' /etc/apache2/apache2.conf \
|
|
|
|
&& echo "expose_php = Off" > /usr/local/etc/php/conf.d/php_version.ini
|
2021-05-09 22:07:17 +02:00
|
|
|
|
|
|
|
CMD ["apache2-foreground"]
|