add optional encryption for stored session data using Sodium library

This commit is contained in:
Andrew Dolgov
2025-04-07 20:08:17 +03:00
parent bb2c4b3801
commit 026d68fc2d
3 changed files with 69 additions and 3 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ RUN [ ! -z ${ALPINE_MIRROR} ] && \
apk add --no-cache ca-certificates dcron git postgresql-client rsync sudo tzdata \
php${PHP_SUFFIX} \
$(for p in ctype curl dom exif fileinfo fpm gd iconv intl json mbstring opcache \
openssl pcntl pdo pdo_pgsql pecl-apcu pecl-xdebug phar posix session simplexml sockets tokenizer xml xmlwriter zip; do \
openssl pcntl pdo pdo_pgsql pecl-apcu pecl-xdebug phar posix session simplexml sockets sodium tokenizer xml xmlwriter zip; do \
php_pkgs="$php_pkgs php${PHP_SUFFIX}-$p"; \
done; \
echo $php_pkgs) && \