aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/fr/user/installation.rst
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2017-03-28 14:07:42 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2017-03-28 14:07:42 +0200
commit7d1d961267c129e2110ce9cc14c5a9d0a7d255cb (patch)
treed260d7b4ffc8466d7d410ec61bd896bdadd8456e /docs/fr/user/installation.rst
parente1cc8fd79921fdff9999087ba896c88b14ffc0cd (diff)
parent6ae579e43f6a4ffe607a6361191366410d19f806 (diff)
downloadwallabag-7d1d961267c129e2110ce9cc14c5a9d0a7d255cb.tar.gz
wallabag-7d1d961267c129e2110ce9cc14c5a9d0a7d255cb.tar.zst
wallabag-7d1d961267c129e2110ce9cc14c5a9d0a7d255cb.zip
Merge remote-tracking branch 'origin/master' into 2.3
Diffstat (limited to 'docs/fr/user/installation.rst')
-rw-r--r--docs/fr/user/installation.rst26
1 files changed, 25 insertions, 1 deletions
diff --git a/docs/fr/user/installation.rst b/docs/fr/user/installation.rst
index 9ef5ee98..9dcb0efb 100644
--- a/docs/fr/user/installation.rst
+++ b/docs/fr/user/installation.rst
@@ -4,7 +4,7 @@ Installer wallabag
4Pré-requis 4Pré-requis
5------------ 5------------
6 6
7wallabag est compatible avec PHP >= 5.5, PHP 7 inclus. 7wallabag est compatible avec **PHP >= 5.6**, PHP 7 inclus.
8 8
9.. note:: 9.. note::
10 10
@@ -107,6 +107,12 @@ Virtual hosts
107Configuration avec Apache 107Configuration avec Apache
108~~~~~~~~~~~~~~~~~~~~~~~~~ 108~~~~~~~~~~~~~~~~~~~~~~~~~
109 109
110N'oubliez pas d'activer le mod *rewrite* de Apache
111
112.. code-block:: bash
113
114 a2enmod rewrite && systemctl reload apache2
115
110En 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 : 116En 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 :
111 117
112:: 118::
@@ -147,6 +153,24 @@ En imaginant que vous vouliez installer wallabag dans le dossier ``/var/www/wall
147 CustomLog /var/log/apache2/wallabag_access.log combined 153 CustomLog /var/log/apache2/wallabag_access.log combined
148 </VirtualHost> 154 </VirtualHost>
149 155
156.. tip:: Pour Apache 2.4, dans la section `<Directory /var/www/wallabag/web>` vous devez remplacer les directives suivantes :
157
158::
159
160 AllowOverride None
161 Order Allow,Deny
162 Allow from All
163
164
165par
166
167::
168
169 Require All granted
170
171
172
173
150Après que vous ayez rechargé/redémarré Apache, vous devriez pouvoir avoir accès à wallabag à l'adresse http://domain.tld. 174Après que vous ayez rechargé/redémarré Apache, vous devriez pouvoir avoir accès à wallabag à l'adresse http://domain.tld.
151 175
152Configuration avec Nginx 176Configuration avec Nginx