This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |