Updated installation process with apache2 and php
This commit is contained in:
parent
2a6625f6d4
commit
c143bb58a5
20
README.md
20
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
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue