Install PHP 8 with common extensions for web development.
Add Repository
add-apt-repository ppa:ondrej/php -y\napt updateInstall PHP 8.3
apt install php8.3 php8.3-fpm php8.3-mysql php8.3-curl php8.3-xml php8.3-mbstring php8.3-zip php8.3-gd php8.3-intl php8.3-bcmath -yCheck Version
php -vConfigure
Edit /etc/php/8.3/fpm/php.ini for common settings:
upload_max_filesize = 64M\npost_max_size = 64M\nmemory_limit = 256M\nmax_execution_time = 300systemctl restart php8.3-fpm