Kapitel 7/Tutorial.md aktualisiert

This commit is contained in:
2025-09-04 10:43:56 +00:00
parent 68241b2cca
commit b461b2c0de

View File

@@ -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