From 8bae58c2b28dcc3f9d1eec2291e09a4a76070b85 Mon Sep 17 00:00:00 2001 From: davidovski Date: Fri, 25 Aug 2023 18:06:12 +0100 Subject: [PATCH] Add php8-apcu to dependencies --- README.md | 2 +- docker/php/php.dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f56505a..44e781a 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ You can access the full list of LibreX and LibreY instances on one of the follow ### About LibreY LibreY gives you text results from DuckDuckGo or Google, images from Qwant, and torrents from i.e. Ahmia and popular torrent sites without spying on you. -
LibreY doesn't save any type of data about the user, there are no logs (except NGINX logs if the host sets them), no caches. +
LibreY doesn't save **any** type of data about the user, there are no logs (except NGINX logs if the host sets them). ### LibreY compared to other metasearch engines diff --git a/docker/php/php.dockerfile b/docker/php/php.dockerfile index 5a52265..8735137 100644 --- a/docker/php/php.dockerfile +++ b/docker/php/php.dockerfile @@ -56,7 +56,7 @@ ENV CURLOPT_VERBOSE=true # Install PHP-FPM using Alpine's package manager, apk # Configure PHP-FPM to listen on a Unix socket instead of a TCP port, which is more secure and efficient -RUN apk add php8 php8-fpm php8-dom php8-curl php8-json --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing &&\ +RUN apk add php8 php8-fpm php8-dom php8-curl php8-json php8-apcu --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing &&\ sed -i 's/^\s*listen = 127.0.0.1:9000/listen = \/run\/php8\/php-fpm8.sock/' ${WWW_CONFIG} &&\ sed -i 's/^\s*;\s*listen.owner = nobody/listen.owner = nginx/' ${WWW_CONFIG} &&\ sed -i 's/^\s*;\s*listen.group = nobody/listen.group = nginx/' ${WWW_CONFIG} &&\