From 3b7ce0b676a21b9c9ea523a744465007421e00f0 Mon Sep 17 00:00:00 2001 From: STAM Date: Wed, 11 Dec 2024 11:48:04 +0300 Subject: [PATCH] apache2 fix --- linux/ecosystem/apache2/php5.5/Dockerfile | 4 +++- linux/ecosystem/apache2/php5.6/Dockerfile | 4 +++- linux/ecosystem/apache2/php7.0/Dockerfile | 4 +++- linux/ecosystem/apache2/php7.1/Dockerfile | 4 +++- linux/ecosystem/apache2/php7.2/Dockerfile | 4 +++- linux/ecosystem/apache2/php7.3/Dockerfile | 4 +++- linux/ecosystem/apache2/php7.4/Dockerfile | 4 +++- linux/ecosystem/apache2/php8.0/Dockerfile | 4 +++- linux/ecosystem/apache2/php8.1/Dockerfile | 4 +++- linux/ecosystem/apache2/php8.2/Dockerfile | 4 +++- linux/ecosystem/apache2/php8.3/Dockerfile | 4 +++- linux/ecosystem/apache2/php8.4/Dockerfile | 4 +++- 12 files changed, 36 insertions(+), 12 deletions(-) diff --git a/linux/ecosystem/apache2/php5.5/Dockerfile b/linux/ecosystem/apache2/php5.5/Dockerfile index 765d829a2..4d2af4dd2 100644 --- a/linux/ecosystem/apache2/php5.5/Dockerfile +++ b/linux/ecosystem/apache2/php5.5/Dockerfile @@ -62,7 +62,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php5.6/Dockerfile b/linux/ecosystem/apache2/php5.6/Dockerfile index cd430f88d..af7b5b08d 100644 --- a/linux/ecosystem/apache2/php5.6/Dockerfile +++ b/linux/ecosystem/apache2/php5.6/Dockerfile @@ -61,7 +61,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php7.0/Dockerfile b/linux/ecosystem/apache2/php7.0/Dockerfile index dbd08a387..92a50dd07 100644 --- a/linux/ecosystem/apache2/php7.0/Dockerfile +++ b/linux/ecosystem/apache2/php7.0/Dockerfile @@ -61,7 +61,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php7.1/Dockerfile b/linux/ecosystem/apache2/php7.1/Dockerfile index 395ad5383..3978fa8bc 100644 --- a/linux/ecosystem/apache2/php7.1/Dockerfile +++ b/linux/ecosystem/apache2/php7.1/Dockerfile @@ -61,7 +61,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php7.2/Dockerfile b/linux/ecosystem/apache2/php7.2/Dockerfile index bd789da52..5dd2b36cd 100644 --- a/linux/ecosystem/apache2/php7.2/Dockerfile +++ b/linux/ecosystem/apache2/php7.2/Dockerfile @@ -61,7 +61,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php7.3/Dockerfile b/linux/ecosystem/apache2/php7.3/Dockerfile index 7e9f860ea..91fd41aa3 100644 --- a/linux/ecosystem/apache2/php7.3/Dockerfile +++ b/linux/ecosystem/apache2/php7.3/Dockerfile @@ -61,7 +61,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php7.4/Dockerfile b/linux/ecosystem/apache2/php7.4/Dockerfile index a74f99364..c0e1f441d 100644 --- a/linux/ecosystem/apache2/php7.4/Dockerfile +++ b/linux/ecosystem/apache2/php7.4/Dockerfile @@ -61,7 +61,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php8.0/Dockerfile b/linux/ecosystem/apache2/php8.0/Dockerfile index ab24fb142..7ae6fe800 100644 --- a/linux/ecosystem/apache2/php8.0/Dockerfile +++ b/linux/ecosystem/apache2/php8.0/Dockerfile @@ -62,7 +62,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php8.1/Dockerfile b/linux/ecosystem/apache2/php8.1/Dockerfile index 5705b9828..05171e6ec 100644 --- a/linux/ecosystem/apache2/php8.1/Dockerfile +++ b/linux/ecosystem/apache2/php8.1/Dockerfile @@ -62,7 +62,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php8.2/Dockerfile b/linux/ecosystem/apache2/php8.2/Dockerfile index c07c0fd07..fea58bb16 100644 --- a/linux/ecosystem/apache2/php8.2/Dockerfile +++ b/linux/ecosystem/apache2/php8.2/Dockerfile @@ -62,7 +62,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php8.3/Dockerfile b/linux/ecosystem/apache2/php8.3/Dockerfile index 7e27ea964..3c25ddaf4 100644 --- a/linux/ecosystem/apache2/php8.3/Dockerfile +++ b/linux/ecosystem/apache2/php8.3/Dockerfile @@ -62,7 +62,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install diff --git a/linux/ecosystem/apache2/php8.4/Dockerfile b/linux/ecosystem/apache2/php8.4/Dockerfile index 2737d9ebc..301c43899 100644 --- a/linux/ecosystem/apache2/php8.4/Dockerfile +++ b/linux/ecosystem/apache2/php8.4/Dockerfile @@ -62,7 +62,9 @@ COPY etc/apache2/apache2.conf /etc/apache2/apache2.conf ################################################################## # LDAP Fix ################################################################## -RUN echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf +RUN mkdir -p /etc/ldap && \ + touch /etc/ldap/ldap.conf && \ + echo "TLS_REQCERT never" >> /etc/ldap/ldap.conf ############################################################################## # Cassandra PHP Drivers Install