X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=docs%2Fen%2Fuser%2Finstallation.rst;h=81c563f0a2accd84e291afd49d93b40d23d8dec5;hb=6f296a789c9cb063ea20c27a5b4f977cf9aeafbf;hp=77ef60a82f9f8385f87a27c1383efd77a5217804;hpb=64d080586d6817dbb22ed844908f58987c1a60e3;p=github%2Fwallabag%2Fwallabag.git diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst index 77ef60a8..81c563f0 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:: @@ -16,7 +16,7 @@ Install Composer: :: - curl -s http://getcomposer.org/installer | php + curl -s https://getcomposer.org/installer | php You can find specific instructions `here `__. @@ -85,7 +85,7 @@ Execute this command to download and extract the latest package: .. code-block:: bash - wget http://wllbg.org/latest-v2-package && tar xvf latest-v2-package + wget https://wllbg.org/latest-v2-package && tar xvf latest-v2-package You will find the `md5 hash of the latest package on our website `_. @@ -104,12 +104,26 @@ Command to launch container docker pull wallabag/wallabag +Installation on Cloudron +~~~~~~~~~~~~~~~~~~~~~~~~ + +Cloudron provides an easy way to install webapps on your server with a focus on sysadmin automation and keeping apps updated. +wallabag is packaged as a Cloudron app and available to install directly from the store. + +`Install wallabag on your Cloudron `__ + 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: :: @@ -150,6 +164,23 @@ Assuming you install wallabag in the ``/var/www/wallabag`` folder and that you w 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. Configuration on Nginx