In this tutorial, I will show you step by step how to install the latest stable OpenSSL version from source on Debian servers.
Continue reading “How to Install the latest OpenSSL version from Source on Linux (Debian)”Tag: debian
PHP APCU on Debian
apt install gcc make autoconf libc-dev pkg-config php-dev
pecl channel-update pecl.php.net
pecl install apcu
You should add “extension=apcu.so” to php.ini
/etc/php/8.2/fpm/conf.d/20-apcu.ini
or try:
echo "extension=apcu.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`