use redis for queues, sessions and cache (#618)

This commit is contained in:
Saeed Vaziry
2025-06-21 09:48:07 +02:00
committed by GitHub
parent 3196c0d954
commit 7bfa9ef91d
10 changed files with 40 additions and 9 deletions

View File

@ -108,6 +108,12 @@ sed -i "s/post_max_size = .*/post_max_size = 1G/" /etc/php/${V_PHP_VERSION}/fpm/
curl -sS https://getcomposer.org/installer -o composer-setup.php
php composer-setup.php --install-dir=/usr/local/bin --filename=composer
# redis
apt install redis-server -y
service redis enable
service redis start
# setup website
export COMPOSER_ALLOW_SUPERUSER=1
export V_REPO="https://github.com/vitodeploy/vito.git"