From 0ae52976990718c139026c2f2ef39f5d14565734 Mon Sep 17 00:00:00 2001 From: Kevin Gautreau Date: Tue, 14 Feb 2017 15:29:33 +0100 Subject: Doc - informations about Apache 2.4 --- docs/fr/user/installation.rst | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'docs/fr/user/installation.rst') diff --git a/docs/fr/user/installation.rst b/docs/fr/user/installation.rst index 9ef5ee98..319735af 100644 --- a/docs/fr/user/installation.rst +++ b/docs/fr/user/installation.rst @@ -147,6 +147,24 @@ En imaginant que vous vouliez installer wallabag dans le dossier ``/var/www/wall CustomLog /var/log/apache2/wallabag_access.log combined +.. tip:: Pour Apache 2.4, dans la section `` vous devez remplacer les directives suivantes : + +:: + + AllowOverride None + Order Allow,Deny + Allow from All + + +par + +:: + + Require All granted + + + + Après que vous ayez rechargé/redémarré Apache, vous devriez pouvoir avoir accès à wallabag à l'adresse http://domain.tld. Configuration avec Nginx -- cgit v1.2.3 From a737f4b58eda4836ab25c63e36a3d80aac2ccccf Mon Sep 17 00:00:00 2001 From: Quentin THEURET Date: Thu, 23 Feb 2017 16:09:06 +0100 Subject: Ajout du mod 'rewrite' de Apache --- docs/fr/user/installation.rst | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'docs/fr/user/installation.rst') diff --git a/docs/fr/user/installation.rst b/docs/fr/user/installation.rst index 319735af..5d29cb01 100644 --- a/docs/fr/user/installation.rst +++ b/docs/fr/user/installation.rst @@ -107,6 +107,12 @@ Virtual hosts Configuration avec Apache ~~~~~~~~~~~~~~~~~~~~~~~~~ +N'oubliez pas d'activer le mod *rewrite* de Apache + +.. code-block:: bash + + a2enmod rewrite && systemctl reload apache2 + En imaginant que vous vouliez installer wallabag dans le dossier ``/var/www/wallabag`` et que vous utilisiez PHP comme un module Apache, voici un vhost pour wallabag : :: -- cgit v1.2.3 From de0ab52a47ea91f7013d0cacd7240ecdc85026ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Tue, 28 Mar 2017 11:45:40 +0200 Subject: Updated requirements in documentation --- docs/fr/user/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/fr/user/installation.rst') diff --git a/docs/fr/user/installation.rst b/docs/fr/user/installation.rst index 9ef5ee98..0884608d 100644 --- a/docs/fr/user/installation.rst +++ b/docs/fr/user/installation.rst @@ -4,7 +4,7 @@ Installer wallabag Pré-requis ------------ -wallabag est compatible avec PHP >= 5.5, PHP 7 inclus. +wallabag est compatible avec **PHP >= 5.6**, PHP 7 inclus. .. note:: -- cgit v1.2.3