From 947ccd075c9974ad5158ac198f4e376385d94c4a Mon Sep 17 00:00:00 2001 From: Kevin Gautreau Date: Tue, 14 Feb 2017 09:24:56 +0100 Subject: Add informations about Apache 2.4 --- docs/en/user/installation.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'docs/en/user/installation.rst') 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 ErrorLog /var/log/apache2/wallabag_error.log CustomLog /var/log/apache2/wallabag_access.log combined + + +.. tip:: Note for Apache 2.4, in the section `` you have to replace the directives : + +:: + + AllowOverride None + Order Allow,Deny + Allow from All + + +by + +:: + + Require All granted + After reloading or restarting Apache, you should now be able to access wallabag at http://domain.tld. -- cgit v1.2.3 From 0a82d6e23c71d797f5ab6e54ee4f67a6c91a05bf Mon Sep 17 00:00:00 2001 From: Quentin THEURET Date: Thu, 23 Feb 2017 16:10:14 +0100 Subject: Activate 'rewrite' mod of Apache --- docs/en/user/installation.rst | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'docs/en/user/installation.rst') diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst index 7fb81aeb..2b730b83 100644 --- a/docs/en/user/installation.rst +++ b/docs/en/user/installation.rst @@ -110,6 +110,12 @@ Virtual hosts Configuration on Apache ~~~~~~~~~~~~~~~~~~~~~~~ +Do not forget to active the *rewrite* mod of Apache + +.. code-block:: bash + + a2enmod rewrite && systemctl reload apache2 + Assuming you install wallabag in the ``/var/www/wallabag`` folder and that you want to use PHP as an Apache module, here's a vhost for 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/en/user/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/en/user/installation.rst') diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst index 7d3bcf61..5b229bda 100644 --- a/docs/en/user/installation.rst +++ b/docs/en/user/installation.rst @@ -4,7 +4,7 @@ Install wallabag Requirements ------------ -wallabag is compatible with PHP >= 5.5, including PHP 7. +wallabag is compatible with **PHP >= 5.6**, including PHP 7. .. note:: -- cgit v1.2.3