@@ -33,9 +33,9 @@ Nous sommes une communauté amicale.
3333 * Fonctionne même sur un Raspberry Pi 1 avec des temps de réponse < 1s (testé sur 150 flux, 22k articles)
3434* Serveur Web Apache2 (recommandé), ou nginx, lighttpd (non testé sur les autres)
3535* PHP 5.3.3+ (PHP 5.4+ recommandé, et PHP 5.5+ pour les performances, et PHP 7+ pour d’encore meilleures performances)
36- * Requis : [DOM](http://php.net/dom), [XML](http://php.net/xml), [PDO_MySQL](http://php.net/pdo-mysql) ou [PDO_SQLite](http://php.net/pdo-sqlite), [cURL](http://php.net/curl)
36+ * Requis : [DOM](http://php.net/dom), [XML](http://php.net/xml), [PDO_MySQL](http://php.net/pdo-mysql) ou [PDO_SQLite](http://php.net/pdo-sqlite) ou [PDO_PGSQL](http://php.net/pdo-pgsql) , [cURL](http://php.net/curl)
3737 * Recommandés : [JSON](http://php.net/json), [GMP](http://php.net/gmp) (pour accès API sur plateformes < 64 bits), [IDN](http://php.net/intl.idn) (pour les noms de domaines internationalisés), [mbstring](http://php.net/mbstring) et/ou [iconv](http://php.net/iconv) (pour conversion d’encodages), [Zip](http://php.net/zip) (pour import/export), [zlib](http://php.net/zlib) (pour les flux compressés)
38- * MySQL 5.5.3+ (recommandé) ou SQLite 3.7.4+
38+ * MySQL 5.5.3+ (recommandé), ou SQLite 3.7.4+, ou PostgreSQL
3939* Un navigateur Web récent tel Firefox, Internet Explorer 11 / Edge, Chrome, Opera, Safari.
4040 * Fonctionne aussi sur mobile
4141
@@ -56,13 +56,20 @@ Nous sommes une communauté amicale.
5656``` sh
5757# Si vous utilisez le serveur Web Apache (sinon il faut un autre serveur Web)
5858sudo apt-get install apache2
59- sudo a2enmod headers expires rewrite ssl
60- # (optionnel) Si vous voulez un serveur de base de données MySQL
61- sudo apt-get install mysql-server mysql-client php5-mysql
62- # Composants principaux (pour Ubuntu <= 15.10, Debian <= 8 Jessie)
59+ sudo a2enmod headers expires rewrite ssl # Modules Apache
60+
61+ # Pour Ubuntu <= 15.10, Debian <= 8 Jessie
6362sudo apt-get install php5 php5-curl php5-gmp php5-intl php5-json php5-sqlite
64- # Composants principaux (pour Ubuntu >= 16.04, Debian >= 9 Stretch)
65- sudo apt install php libapache2-mod-php php-curl php-gmp php-intl php-mbstring php-sqlite3 php-xml php-zip
63+ sudo apt-get install libapache2-mod-php5 # Pour Apache
64+ sudo apt-get install mysql-server mysql-client php5-mysql # Base de données MySQL optionnelle
65+ sudo apt-get install postgresql php5-pgsql # Base de données PostgreSQL optionnelle
66+
67+ # Pour Ubuntu >= 16.04, Debian >= 9 Stretch
68+ sudo apt install php php-curl php-gmp php-intl php-mbstring php-sqlite3 php-xml php-zip
69+ sudo apt install libapache2-mod-php # Pour Apache
70+ sudo apt install mysql-server mysql-client php-mysql # Base de données MySQL optionnelle
71+ sudo apt install postgresql php-pgsql # Base de données PostgreSQL optionnelle
72+
6673# Redémarrage du serveur Web
6774sudo service apache2 restart
6875
0 commit comments