Compare commits

...

4 Commits

Author SHA1 Message Date
Hugo Thunnissen 66e89046d1 Update opcache config (disable timestamp revalidation)
continuous-integration/drone/push Build is passing Details
2 years ago
Hugo Thunnissen d17c0dd8aa s/DRONE_BRANCH_NAME/DRONE_BRANCH/
continuous-integration/drone/push Build is passing Details
2 years ago
Hugo Thunnissen 0c34072fc0 Use debian bullseye
continuous-integration/drone/push Build is failing Details
2 years ago
Hugo Thunnissen 0de0c4dca8 Use debian buster in stead of sid
continuous-integration/drone/push Build is failing Details
2 years ago

@ -10,5 +10,5 @@ steps:
username: hugotty
password:
from_secret: docker_password
repo: "hugotty/${DRONE_BRANCH_NAME}-fpm"
repo: "hugotty/${DRONE_BRANCH}-fpm"
tags: latest

@ -1,4 +1,4 @@
FROM debian:sid
FROM debian:bullseye
# Set the env variables to non-interactive
ENV DEBIAN_FRONTEND noninteractive

@ -1805,7 +1805,7 @@ opcache.memory_consumption=256
; The maximum number of keys (scripts) in the OPcache hash table.
; Only numbers between 200 and 1000000 are allowed.
opcache.max_accelerated_files=10000
opcache.max_accelerated_files=300000
; The maximum percentage of "wasted" memory until a restart is scheduled.
opcache.max_wasted_percentage=5
@ -1818,7 +1818,7 @@ opcache.use_cwd=1
; When disabled, you must reset the OPcache manually or restart the
; webserver for changes to the filesystem to take effect.
;opcache.validate_timestamps=1
opcache.validate_timestamps=0
; How often (in seconds) to check file timestamps for changes to the shared
; memory storage allocation. ("1" means validate once per second, but only
@ -1830,7 +1830,7 @@ opcache.use_cwd=1
; If disabled, all PHPDoc comments are dropped from the code to reduce the
; size of the optimized code.
;opcache.save_comments=1
opcache.save_comments=0
; Allow file existence override (file_exists, etc.) performance feature.
;opcache.enable_file_override=0

Loading…
Cancel
Save