File tree 4 files changed +21
-1
lines changed
4 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,9 @@ RUN docker-php-ext-enable mongo intl imagick rdkafka mongodb memcache ps apcu
95
95
# Use the default production configuration
96
96
RUN cp "$PHP_INI_DIR/php.ini-production" "$PHP_INI_DIR/php.ini"
97
97
98
+ # Enable Authorization header in apache
99
+ RUN echo "SetEnvIf Authorization \" (.*)\" HTTP_AUTHORIZATION=\$ 1" >> /etc/apache2/apache2.conf
100
+
98
101
# Enable apache2 modules
99
102
RUN a2enmod rewrite
100
103
Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ** Version 5.6.1**
4
+
5
+ * Enable authorization header in a REST request.
6
+
7
+ ** Version 5.6**
8
+
9
+ * Use ** php:5.6.39-apache-jessie** base image.
10
+ * Add datadog APM tracer (beta 0.8.1).
11
+ * Add ** rdkafka** dependency.
Original file line number Diff line number Diff line change @@ -14,13 +14,19 @@ Dockerized LAMPP stack based on these components:
14
14
15
15
Table of contents
16
16
-----------------
17
+ * [ Changelog] ( #changelog )
17
18
* [ Requirements] ( #requirements )
18
19
* [ Building Docker Image] ( #building-docker-image )
19
20
* [ Using Docker Compose] ( #using-docker-compose )
20
21
* [ Mounting Volume] ( #mounting-volume )
21
22
* [ Custom LAMPP Configuration] ( #custom-lampp-configuration )
22
23
* [ Expose Port] ( #expose-port )
23
24
25
+ Changelog
26
+ ---------
27
+
28
+ Open this [ CHANGELOG.md] ( https://github.com/cikupin/docker-lampp/blob/master/CHANGELOG.md ) file to see version changelog.
29
+
24
30
Requirements
25
31
------------
26
32
Original file line number Diff line number Diff line change 1
1
version : ' 2'
2
2
services :
3
3
php-apache2 :
4
- image : cikupin/php-apache2:5.6
4
+ image : cikupin/php-apache2:5.6-1
5
5
container_name : php-apache2-5.6
6
6
volumes :
7
7
- ./etc/apache2/sites-available/000-default.conf:/etc/apache2/sites-available/000-default.conf
You can’t perform that action at this time.
0 commit comments