X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=docs%2Ffr%2Fuser%2Finstallation.rst;h=9ef8aa112cb1db86d4d488e9d1c4ccba347d9084;hb=9c09c253fea8d618f1be110677a1a9c76e3afdcd;hp=9ef5ee9828516c6d7cc19686ced5abf0fd4f4b58;hpb=7c05d59153cb89d5a714f1c8dfb8862d9c4f89d1;p=github%2Fwallabag%2Fwallabag.git diff --git a/docs/fr/user/installation.rst b/docs/fr/user/installation.rst index 9ef5ee98..9ef8aa11 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:: @@ -101,12 +101,26 @@ Commande pour démarrer le containeur docker pull wallabag/wallabag +Installation sur Cloudron +~~~~~~~~~~~~~~~~~~~~~~~~ + +Cloudron permet d'installer des applications web sur votre serveur +wallabag est proposé en tant qu'application Cloudron et est disponible directement depuis le store. + +`Installer wallabag sur Cloudron `__ + 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 : :: @@ -147,6 +161,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