12 lines
533 B
Docker
12 lines
533 B
Docker
|
from php:7.4.18-apache
|
||
|
|
||
|
RUN a2enmod remoteip
|
||
|
RUN echo "RemoteIPHeader X-Forwarded-For" > /etc/apache2/conf-available/remoteip.conf
|
||
|
RUN a2enconf remoteip
|
||
|
RUN sed -i -r 's/^ServerTokens .*/ServerTokens Prod/g' /etc/apache2/conf-available/security.conf
|
||
|
RUN sed -i -r 's/^ServerSignature .*/ServerSignature Off/g' /etc/apache2/conf-available/security.conf
|
||
|
RUN sed -i -E 's/^LogFormat "%h(.*)/LogFormat "%a\1/g' /etc/apache2/apache2.conf
|
||
|
RUN echo "expose_php = Off" > /usr/local/etc/php/conf.d/php_version.ini
|
||
|
|
||
|
CMD ["apache2-foreground"]
|