]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fix lighttpd documentation
authorNicolas Lœuillet <nicolas@loeuillet.org>
Wed, 4 May 2016 09:40:13 +0000 (11:40 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Wed, 4 May 2016 09:40:13 +0000 (11:40 +0200)
docs/en/user/installation.rst
docs/fr/user/installation.rst

index 3872ad3aa7ba194d7aeaaa008d4c2535dcd959d6..d22f8549bf994f5e012b41dd4228b23bfbe48a01 100644 (file)
@@ -192,20 +192,20 @@ After reloading or restarting nginx, you should now be able to access wallabag a
 
     When you want to import large file into wallabag, you need to add this line in your nginx configuration ``client_max_body_size XM; # allows file uploads up to X megabytes``.
 
-Configuration on LigHTTPd
+Configuration on lighttpd
 ~~~~~~~~~~~~~~~~~~~~~~~~~
 
-Edit your ``lighttpd.conf`` file and paste this configuration into it:
+Assuming you install wallabag in the /var/www/wallabag folder, here's the recipe for wallabag (edit your ``lighttpd.conf`` file and paste this configuration into it):
 
 ::
 
     server.modules = (
-    "mod_fastcgi",
-    "mod_access",
-    "mod_alias",
-    "mod_compress",
-    "mod_redirect",
-    "mod_rewrite",
+        "mod_fastcgi",
+        "mod_access",
+        "mod_alias",
+        "mod_compress",
+        "mod_redirect",
+        "mod_rewrite",
     )
     server.document-root = "/var/www/wallabag/web"
     server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
@@ -226,9 +226,8 @@ Edit your ``lighttpd.conf`` file and paste this configuration into it:
     dir-listing.activate = "disable"
 
     url.rewrite-if-not-file = (
-    "^/([^?])(?:\?(.))?" => "/app.php?$1&$2",
-    "^/([^?]*)" => "/app.php?=$1",
-    "^/wiki$" => "/app.php",
+        "^/([^?])(?:\?(.))?" => "/app.php?$1&$2",
+        "^/([^?]*)" => "/app.php?=$1",
     )
 
 Rights access to the folders of the project
index 9039d608d1b96306d50edd0e1d9a018d94e3de90..8f2ae25d2c5e9573fb533ad1f7ae3c2daa3ec003 100644 (file)
@@ -189,20 +189,20 @@ Après que vous ayez rechargé/redémarré Nginx, vous devriez pouvoir avoir acc
 
     Si vous voulez importer un fichier important dans wallabag, vous devez ajouter cette ligne dans votre configuration nginx ``client_max_body_size XM; # allows file uploads up to X megabytes``.
 
-Configuration avec LigHTTPd
+Configuration avec lighttpd
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-Éditez votre fichier ``lighttpd.conf`` collez-y cette configuration :
+En imaginant que vous vouliez installer wallabag dans le dossier ``/var/www/wallabag``, voici un fichier de configuration pour wallabag (éditez votre fichier ``lighttpd.conf`` collez-y cette configuration) :
 
 ::
 
     server.modules = (
-    "mod_fastcgi",
-    "mod_access",
-    "mod_alias",
-    "mod_compress",
-    "mod_redirect",
-    "mod_rewrite",
+        "mod_fastcgi",
+        "mod_access",
+        "mod_alias",
+        "mod_compress",
+        "mod_redirect",
+        "mod_rewrite",
     )
     server.document-root = "/var/www/wallabag/web"
     server.upload-dirs = ( "/var/cache/lighttpd/uploads" )
@@ -223,9 +223,8 @@ Configuration avec LigHTTPd
     dir-listing.activate = "disable"
 
     url.rewrite-if-not-file = (
-    "^/([^?])(?:\?(.))?" => "/app.php?$1&$2",
-    "^/([^?]*)" => "/app.php?=$1",
-    "^/wiki$" => "/app.php",
+        "^/([^?])(?:\?(.))?" => "/app.php?$1&$2",
+        "^/([^?]*)" => "/app.php?=$1",
     )
 
 Droits d'accès aux dossiers du projet