@@ -27,10 +27,10 @@ Web requires a VPS or Dedicated Server with atleast 2GB of RAM and 1 CPU. Ubuntu
2727
2828Software Dependencies:
2929
30- - PHP 8.3+
31- - MySQL 5.7 + or MariaDB 10.2.7 +
30+ - PHP 8.3
31+ - MySQL 8 + or MariaDB 10.3 +
3232- Apache2 or Nginx
33- - NodeJS 12 +
33+ - NodeJS 16 +
3434- Redis Server
3535- Git
3636- Composer
@@ -59,10 +59,10 @@ sudo apt install software-properties-common && sudo add-apt-repository ppa:ondre
5959sudo apt update
6060```
6161
62- Install PHP 8.4 and all required extensions.
62+ Install PHP 8.3 and all required extensions.
6363
6464``` bash
65- sudo apt -y install curl php8.4 php8.4 -{cli,gd,mysql,pdo,mbstring,tokenizer,bcmath,xml,fpm,curl,zip,intl,redis}
65+ sudo apt -y install curl php8.3 php8.3 -{cli,gd,mysql,pdo,mbstring,tokenizer,bcmath,xml,fpm,curl,zip,intl,redis}
6666```
6767
6868### MySQL / MariaDB
@@ -102,7 +102,7 @@ Make sure to only install one. Either Nginx or Apache2.
102102Install Apache2 server and php extension for it.
103103
104104``` bash
105- sudo apt install apache2 libapache2-mod-php8.4
105+ sudo apt install apache2 libapache2-mod-php8.3
106106sudo systemctl restart apache2
107107```
108108
@@ -111,7 +111,7 @@ sudo systemctl restart apache2
111111Install Nginx server and php-fpm runner.
112112
113113``` bash
114- sudo apt install nginx php8.4 -fpm
114+ sudo apt install nginx php8.3 -fpm
115115```
116116
117117 </TabItem >
@@ -482,7 +482,7 @@ server {
482482 error_page 404 /index.php;
483483
484484 location ~ \.php$ {
485- fastcgi_pass unix:/var/run/php/php8.2 -fpm.sock;
485+ fastcgi_pass unix:/var/run/php/php8.3 -fpm.sock;
486486 fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
487487 include fastcgi_params;
488488 }
0 commit comments