Skip to content

Instantly share code, notes, and snippets.

@MatGPK
MatGPK / install.sh
Created April 23, 2026 11:31
Installation PHP 8.4, Nginx, Certbot on Ubuntu 24.04
#!/bin/bash
sudo DEBIAN_FRONTEND=noninteractive
sudo apt update -y
sudo apt upgrade -y
sudo apt install acl nginx wget build-essential curl lsb-release ca-certificates apt-transport-https software-properties-common -y
sudo ufw allow OpenSSH
sudo ufw allow 'Nginx Full'
sudo add-apt-repository ppa:ondrej/php -y
sudo apt update
sudo apt install php8.4 php8.4-fpm php8.4-common php8.4-pgsql php8.4-xml php8.4-xmlrpc php8.4-curl php8.4-gd php8.4-imagick php8.4-cli php8.4-dev php8.4-imap php8.4-mbstring php8.4-opcache php8.4-soap php8.4-zip php8.4-intl php8.4-bcmath unzip -y