From 4a45dae59310cd8638105a68a9e5afbf4fcc9f15 Mon Sep 17 00:00:00 2001 From: w33b Date: Sun, 1 Mar 2026 16:07:09 +0100 Subject: [PATCH] Update Readme --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7522226..a919bcf 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,13 @@ ## hstream Website -### Install +### Install (Ubuntu) ```bash # Install PHP sudo add-apt-repository ppa:ondrej/php apt update && apt upgrade -apt install php8.3 php8.3-xml php8.3-mysql php8.3-gd php8.3-zip php8.3-curl php8.3-mbstring +apt install php8.4 php8.4-xml php8.4-mysql php8.4-gd php8.4-zip php8.4-curl php8.4-mbstring # Install NodeJS curl -sL https://deb.nodesource.com/setup_20.x -o /tmp/nodesource_setup.sh @@ -22,7 +22,7 @@ mv composer.phar composer # Install NGINX (skip for local dev) apt install nginx -apt install php8.3-fpm +apt install php8.4-fpm # Install MariaDB apt install mariadb-server @@ -54,7 +54,7 @@ nano /etc/supervisor/conf.d/laravel-queue.conf : [program:laravel-queue] process_name=%(program_name)s_%(process_num)02d -command=php /var/www/hstream/artisan queue:work --queue=default --sleep=3 --tries=3 --max-time=3600 +command=php84 /var/www/hstream/artisan queue:work --queue=default --sleep=3 --tries=3 --max-time=3600 autostart=true autorestart=true stopasgroup=true @@ -83,9 +83,9 @@ zip -r hstream_2023_11_30.zip hstream/ ### Update ```bash -php artisan down +php84 artisan down git pull npm run build -php artisan view:clear && php artisan optimize:clear && php artisan cache:clear && service php8.4-fpm restart -php artisan up +php84 artisan view:clear && php84 artisan optimize:clear && php84 artisan cache:clear && service php8.4-fpm restart +php84 artisan up ```