From c143bb58a51707cac6c62c5846bd8ecf770cbab0 Mon Sep 17 00:00:00 2001 From: Laurent Poujoulat Date: Mon, 3 Jan 2022 21:22:10 +0100 Subject: [PATCH] Updated installation process with apache2 and php --- README.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/README.md b/README.md index 4566ebd..74ed0b9 100644 --- a/README.md +++ b/README.md @@ -28,4 +28,24 @@ Ajouter le volume à la table de montage /etc/fstab: # Users data storage for the Nextcloud instance nuage.chalec.org UUID=[UUID-/dev/vdb1] /var/www/nuage.chalec.org/data ext4 errors=remount-ro,nosuid,nodev,noexec,noatime 0 2 + +## Installation des services + +L'installation et la configuration sont basées sur les instructions originales données par: +https://docs.nextcloud.com/server/latest/admin_manual/installation/index.html + +### Installation d'Apache + + # apt install apache2 + # a2enmod rewrite + # a2enmod headers + +### Installation de php et des modules pré-requis + + # apt install php-fpm php-cli + # a2enmod proxy_fcgi setenvif + # a2enconf php7.4-fpm + # apt install php-curl php-gd php-mbstring php-xml php-zip php-pgsql php-bz2 php-intl php-imagick php-xml + +