From b461b2c0dedb2ec9976e897bb4eba3f3f1525839 Mon Sep 17 00:00:00 2001 From: Thomas Dannenberg Date: Thu, 4 Sep 2025 10:43:56 +0000 Subject: [PATCH] Kapitel 7/Tutorial.md aktualisiert --- Kapitel 7/Tutorial.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Kapitel 7/Tutorial.md b/Kapitel 7/Tutorial.md index 9d8e98e..2ba1b4b 100644 --- a/Kapitel 7/Tutorial.md +++ b/Kapitel 7/Tutorial.md @@ -55,6 +55,25 @@ apt install -y curl gnupg2 ca-certificates lsb-release apt-transport-https softw ## 🌐 Dienste installieren +## 🌐 Dienste installieren (mit PHP 8.3 Repo) + +[Platzhalter: Warum explizites PHP-Repo nötig ist (Ubuntu 24.04 enthĂ€lt nicht alle Module). +Verweis auf Ondƙej SurĂœ PPA – Standard bei professionellen PHP-Deployments.] + +### Repository hinzufĂŒgen (nur 1× nötig) + +```bash +apt install -y software-properties-common +add-apt-repository ppa:ondrej/php -y +apt update +``` + +### Dienste + PHP 8.3 + Module installieren + +```bash +apt install -y nginx redis-server postgresql php8.3-fpm php8.3-pgsql php8.3-cli php8.3-common php8.3-gd php8.3-mbstring php8.3-xml php8.3-zip php8.3-curl php8.3-bz2 php8.3-intl php8.3-gmp php8.3-imagick php8.3-redis +``` + [Platzhalter: Hinweis auf explizite PHP-Version, warum kein „php-*“ verwendet wird] ```bash