File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 1
1
## next bugfix release (4.0.1)
2
2
- [ Docker] Support ARM64 architecture ([ PR #130 ] ( https://github.com/mapbender/mapbender-starter/pull/130 ) )
3
- - [ Docker] Add JPEG support ([ PR #132 ] ( https://github.com/mapbender/mapbender-starter/pull/132 ) )
3
+ - [ Docker] Add JPEG support and modify php.ini ([ PR #132 ] ( https://github.com/mapbender/mapbender-starter/pull/132 ) )
4
4
- Ignore deprecation notices in production logs ([ PR #131 ] ( https://github.com/mapbender/mapbender-starter/pull/131 ) )
5
5
6
6
## v4.0.0
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ RUN docker-php-ext-install opcache
28
28
29
29
RUN rm /etc/apache2/sites-enabled/*
30
30
COPY ./docker/mapbender_apache.conf /etc/apache2/sites-enabled/
31
+ COPY ./docker/php.ini /usr/local/etc/php/php.ini
31
32
32
33
RUN sed -ri -e 's!80!8080!g' /etc/apache2/ports.conf
33
34
RUN a2enmod rewrite remoteip
Original file line number Diff line number Diff line change
1
+ max_input_vars = 8000
2
+ expose_php = Off
3
+ error_reporting = E_ALL ^ E_NOTICE
4
+ display_errors = Off
5
+ log_errors = On
6
+ error_log = /dev/stderr
7
+ date.timezone = UTC
8
+ allow_url_fopen = On
9
+ post_max_size = 32M
10
+ upload_max_filesize = 32M
11
+ opcache.max_accelerated_files = 7963
12
+ opcache.validate_timestamps = On
13
+ opcache.revalidate_freq = 2
14
+ # to support Symfony annotations
15
+ opcache.save_comments = 1
16
+ opcache.load_comments = 1
17
+ opcache.fast_shutdown = 1
18
+ opcache.enable_file_override = Off
19
+ memory_limit = 1536M
20
+ max_execution_time = 360
21
+ sys_temp_dir = /tmp
22
+ session.gc_maxlifetime = 4800
You can’t perform that action at this time.
0 commit comments