Skip to content

Commit 56bffaf

Browse files
committed
Releasing 8.1.5-apache-2.4.53.2
2 parents a8e11f6 + c2cddf5 commit 56bffaf

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,6 @@ RUN cd /usr/src/php/ext \
236236
#RUN pecl install intl && docker-php-ext-enable intl
237237
RUN pecl install imagick && docker-php-ext-enable imagick
238238
RUN pecl install xdebug
239-
RUN echo "expose_php=Off" >> /usr/local/etc/php/conf.d/noexposure.ini
240239
# libsodium needs 1.0.9 but had 1.0.0 only. So not using it at the moment
241240
#RUN pecl install libsodium-2.0.21 && docker-php-ext-enable libsodium
242241

@@ -258,6 +257,8 @@ RUN rm -f /etc/apache2/conf-enabled/security.conf /etc/apache2/conf-available/se
258257
COPY etc/conf/ /etc/apache2/conf-enabled/
259258
COPY apache2-foreground /usr/local/bin/
260259

260+
ADD etc/php/ /usr/local/etc/php/conf.d/
261+
261262
RUN apache2ctl -v
262263
RUN php -v
263264
RUN php -m

README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ by default so most PHP applications can run without much tweaks. Check the [Dock
66
The Dockerhub image name is `technicalguru/rs-php`
77

88
# Releases / Tags
9-
* 8.1.5-apache-2.4.53.1
9+
* 8.1.5-apache-2.4.53.2
1010
* 7.4.28-apache-2.4.53.1
1111
* 7.4.28-apache-2.4.52.0
1212
* 7.4.24-apache-2.4.48.1
@@ -55,6 +55,12 @@ xmlwriter
5555
zip
5656
zlib
5757

58+
# Modfied INI settings (varying from default)
59+
```
60+
expose_php=Off
61+
display_errors=Off
62+
```
63+
5864
# License
5965
All scripts are either taken from PHP original Docker image and adapted to work with the latest Apache or created on my own. However, the main
6066
credit goes to PHP and its prior work. The [PHP LICENSE](PHP_LICENSE.txt) is distributed here.

etc/php/noexposure.ini

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
display_errors=Off
2+
expose_php=Off

image.name

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
technicalguru/rs-php

0 commit comments

Comments
 (0)