Skip to content

Commit 9d2fa4d

Browse files
committed
web-baseimage:1.1.1
1 parent 28d7905 commit 9d2fa4d

File tree

4 files changed

+7
-20
lines changed

4 files changed

+7
-20
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 0.7.1
44
- Optimise apache config
55
- Add opcache config
6+
- Upgrade baseimage: web-baseimage:1.1.1
67

78
## 0.7.0
89
- add config.php in config folder

image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM osixia/web-baseimage:1.1.0
1+
FROM osixia/web-baseimage:1.1.1
22
MAINTAINER Bertrand Gouny <bertrand.gouny@osixia.net>
33

44
# phpLDAPadmin version

image/service/phpldapadmin/assets/apache2/http.conf

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,8 @@
66

77
DocumentRoot /var/www/phpldapadmin/htdocs
88

9-
SetOutputFilter DEFLATE
10-
DeflateCompressionLevel 9
11-
AddOutputFilterByType DEFLATE text/html application/javascript text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype image/svg+xml image/x-icon
12-
Header append Vary User-Agent env=!dont-vary
13-
14-
<Filesmatch "\.(ico|css|js|gif|jpg|jpeg|png|svg|eot|ttf|woff|woff2)$">
15-
ExpiresActive on
16-
ExpiresDefault "access plus 30 days"
17-
</Filesmatch>
9+
Include /etc/apache2/conf-available/gzip.conf
10+
Include /etc/apache2/conf-available/cache.conf
1811

1912
<Directory /var/www/phpldapadmin/htdocs >
2013
Require all granted

image/service/phpldapadmin/assets/apache2/https.conf

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,14 @@
66

77
DocumentRoot /var/www/phpldapadmin/htdocs
88

9-
Include /etc/apache2/conf-available/vhost-partial-ssl.conf
9+
Include /etc/apache2/conf-available/ssl.conf
1010

1111
SSLCertificateFile ${CONTAINER_SERVICE_DIR}/phpldapadmin/assets/apache2/certs/${PHPLDAPADMIN_HTTPS_CRT_FILENAME}
1212
SSLCertificateKeyFile ${CONTAINER_SERVICE_DIR}/phpldapadmin/assets/apache2/certs/${PHPLDAPADMIN_HTTPS_KEY_FILENAME}
1313
#SSLCACertificateFile ${CONTAINER_SERVICE_DIR}/phpldapadmin/assets/apache2/certs/${PHPLDAPADMIN_HTTPS_CA_CRT_FILENAME}
1414

15-
SetOutputFilter DEFLATE
16-
DeflateCompressionLevel 9
17-
AddOutputFilterByType DEFLATE text/html application/javascript text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/vnd.ms-fontobject application/x-font-ttf font/opentype image/svg+xml image/x-icon
18-
Header append Vary User-Agent env=!dont-vary
19-
20-
<Filesmatch "\.(ico|css|js|gif|jpg|jpeg|png|svg|eot|ttf|woff|woff2)$">
21-
ExpiresActive on
22-
ExpiresDefault "access plus 30 days"
23-
</Filesmatch>
15+
Include /etc/apache2/conf-available/gzip.conf
16+
Include /etc/apache2/conf-available/cache.conf
2417

2518
<Directory /var/www/phpldapadmin/htdocs >
2619
Require all granted

0 commit comments

Comments
 (0)