aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKevin Gautreau <contact@kgaut.net>2017-02-14 09:24:56 +0100
committerGitHub <noreply@github.com>2017-02-14 09:24:56 +0100
commit947ccd075c9974ad5158ac198f4e376385d94c4a (patch)
tree9df2391404075325a825a33c049c61499c62ed8b
parent4a953a250c2fb3597224e8bd4aeb9e558001603d (diff)
downloadwallabag-947ccd075c9974ad5158ac198f4e376385d94c4a.tar.gz
wallabag-947ccd075c9974ad5158ac198f4e376385d94c4a.tar.zst
wallabag-947ccd075c9974ad5158ac198f4e376385d94c4a.zip
Add informations about Apache 2.4
-rw-r--r--docs/en/user/installation.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst
index 7d3bcf61..7fb81aeb 100644
--- a/docs/en/user/installation.rst
+++ b/docs/en/user/installation.rst
@@ -149,6 +149,23 @@ Assuming you install wallabag in the ``/var/www/wallabag`` folder and that you w
149 ErrorLog /var/log/apache2/wallabag_error.log 149 ErrorLog /var/log/apache2/wallabag_error.log
150 CustomLog /var/log/apache2/wallabag_access.log combined 150 CustomLog /var/log/apache2/wallabag_access.log combined
151 </VirtualHost> 151 </VirtualHost>
152
153
154.. tip:: Note for Apache 2.4, in the section `<Directory /var/www/wallabag/web>` you have to replace the directives :
155
156::
157
158 AllowOverride None
159 Order Allow,Deny
160 Allow from All
161
162
163by
164
165::
166
167 Require All granted
168
152 169
153After reloading or restarting Apache, you should now be able to access wallabag at http://domain.tld. 170After reloading or restarting Apache, you should now be able to access wallabag at http://domain.tld.
154 171