Skip to content

Commit 9f2ae7e

Browse files
committed
Temporary disable ssl in php5.3 image
1 parent 0271105 commit 9f2ae7e

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

5.3/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ RUN \
4646
a2enmod deflate && \
4747
a2enmod setenvif && \
4848
a2enmod vhost_alias && \
49-
a2enmod ssl && \
49+
# a2enmod ssl && \
5050
apt-get autoremove -y && \
5151
apt-get clean && \
5252
rm -rf /var/lib/apt/lists
5353

54-
RUN echo "suhosin.executor.include.whitelist = phar" > /etc/php5/cli/conf.d/composer.ini
54+
RUN echo "suhosin.executor.include.whitelist = phar" > /etc/php5/cli/conf.d/composer.ini
5555

5656
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
5757

5.3/default.conf

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@
1414
</Directory>
1515

1616
</VirtualHost>
17-
<VirtualHost *:443>
17+
# <VirtualHost *:443>
1818

19-
DocumentRoot DOCUMENT_ROOT
19+
# DocumentRoot DOCUMENT_ROOT
2020

21-
ErrorLog /var/log/apache2/error.log
22-
CustomLog /var/log/apache2/access.log combined
21+
# ErrorLog /var/log/apache2/error.log
22+
# CustomLog /var/log/apache2/access.log combined
2323

24-
SetEnv ENVIRONMENT ENVIRONMENT_VAR
24+
# SetEnv ENVIRONMENT ENVIRONMENT_VAR
2525

26-
SSLEngine on
27-
SSLCertificateFile /etc/ssl/crt/dummy.crt
28-
SSLCertificateKeyFile /etc/ssl/crt/dummy.key
26+
# SSLEngine on
27+
# SSLCertificateFile /etc/ssl/crt/dummy.crt
28+
# SSLCertificateKeyFile /etc/ssl/crt/dummy.key
2929

30-
<Directory "DOCUMENT_ROOT">
31-
Options +SymLinksIfOwnerMatch
32-
AllowOverride AuthConfig FileInfo Indexes Limit Options=Indexes,MultiViews
33-
# Require all granted
34-
</Directory>
30+
# <Directory "DOCUMENT_ROOT">
31+
# Options +SymLinksIfOwnerMatch
32+
# AllowOverride AuthConfig FileInfo Indexes Limit Options=Indexes,MultiViews
33+
# # Require all granted
34+
# </Directory>
3535

36-
</VirtualHost>
36+
# </VirtualHost>

0 commit comments

Comments
 (0)