Installation
Mettre à jour le système
apt update && apt upgrade
Installer Apache2
apt install apache2
Installer php5
apt install php5
Installer MySQL
apt install mysql-server
Sécuriser MySQL
mysql_secure_installation
Installer phpMyAdmin
apt install phpmyadmin
Sélectionner Apache2 avec espace.
Activer la réécriture d’adresse
Activer le module rewrite:
a2enmod rewrite
Modifier le fichier /etc/apache2/apache2.conf
nano /etc/apache2/apache2.conf
Remplacer la ligne:
AllowOverride none
Par la ligne:
AllowOverride all
Redémarrer apache2:
service apache2 restart