Skip to content

Commit 57526c6

Browse files
committed
re-enable soap, xsl, zip support
1 parent 98e300e commit 57526c6

File tree

7 files changed

+12
-5
lines changed

7 files changed

+12
-5
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ RUN pip install --upgrade pip
208208
#curl iconv session
209209
#docker-php-ext-install pdo_mysql pdo_sqlite mysqli mcrypt gd exif intl xsl json soap dom zip opcache && \
210210
# docker-php-ext-install iconv pdo_mysql pdo_sqlite pgsql pdo_pgsql mysqli gd exif intl xsl json soap dom zip opcache && \
211-
RUN docker-php-ext-install iconv pdo_mysql mysqli pdo_sqlite pgsql pdo_pgsql exif intl && \
211+
RUN docker-php-ext-install iconv pdo_mysql mysqli pdo_sqlite pgsql pdo_pgsql exif intl xsl soap zip && \
212212
pecl install xdebug-3.1.2 && \
213213
pecl install -o -f redis && \
214214
echo "extension=redis.so" > /usr/local/etc/php/conf.d/redis.ini && \

conf/nginx-site.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ server {
4545
alias /var/www/errors/twitter.svg;
4646
access_log off;
4747
}
48-
location ^~ /gitlab.svg {
49-
alias /var/www/errors/gitlab.svg;
48+
location ^~ /github.svg {
49+
alias /var/www/errors/github.svg;
5050
access_log off;
5151
}
5252

errors/404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<img src="./sad.svg"/>
1111
<br/>
1212
<h2>Page not Found</h2>
13-
<a href="https://gitlab.com/ric_harvey" title="View my gitlab profile" style><img src="./gitlab.svg" height="15px"/> Gitlab</a>
13+
<a href="https://github.com/richarvey" title="View my Github profile" style><img src="./github.svg" height="15px"/> Github</a>
1414
<a href="https://twitter.com/ric__harvey" title="View my twitter profile"><img src="./twitter.svg" height="15px"/> Twitter</a>
1515
</body>
1616
</html>

errors/github.svg

+1
Loading

errors/gitlab.svg

-1
This file was deleted.

src/index.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1+
<html>
2+
<head>
3+
</head>
4+
<body>
5+
16
<?php
27

38
echo phpinfo();
49

510
?>
11+
</body>
12+
</html>

src/logo.png

18.5 KB
Loading

0 commit comments

Comments
 (0)