From ec0a2b4b72ccd8b658df48e1d94a1c503fd96cb7 Mon Sep 17 00:00:00 2001 From: Kamal Date: Wed, 5 Jun 2024 00:26:32 +0200 Subject: [PATCH] Enhance support for OTP Tokens 2FA and OpenSSL Integration - Improved support for One-Time Password (OTP) tokens in Two-Factor Authentication (2FA). - Enhanced integration with internal OpenSSL Library. Regards, Kamal. --- php-chroot-bind | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/php-chroot-bind b/php-chroot-bind index 32a5057..06c14a4 100755 --- a/php-chroot-bind +++ b/php-chroot-bind @@ -4,12 +4,18 @@ _SYSTEMD_UNIT_DIR="/etc/systemd/system" _BIND="\ /usr/share/zoneinfo \ /dev/urandom \ + /dev/random \ /dev/zero \ /dev/null \ /etc/resolv.conf \ + /etc/hosts \ /lib/x86_64-linux-gnu/libnss_dns.so.2 \ /usr/share/ca-certificates \ - /etc/ssl/certs" + /etc/ssl/certs \ + /etc/ssl/openssl.cnf \ + /usr/lib/ssl/openssl.cnf \ + /usr/share/php \ + /usr/bin" # File with additional binds for specific chroots. Relative to the chroot. _BIND_LOCAL="../bind.conf"