aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-04-10 14:15:38 +0200
committerJeremy Benoist <j0k3r@users.noreply.github.com>2016-04-10 14:15:38 +0200
commitc29747357a4c7c7c329f89ee715396b815eca972 (patch)
tree1685c7f67d258431413480cb2792536fdc74c30f
parent54ecbb41d6318dbaaae00ea810cd5a13784ef82f (diff)
parentcea846d4070b96868e889042ddf2e1c62725bddb (diff)
downloadwallabag-c29747357a4c7c7c329f89ee715396b815eca972.tar.gz
wallabag-c29747357a4c7c7c329f89ee715396b815eca972.tar.zst
wallabag-c29747357a4c7c7c329f89ee715396b815eca972.zip
Merge pull request #1899 from wallabag/v2-nginx-doc
Add documentation about importing large file into nginx
-rw-r--r--docs/en/user/installation.rst4
-rw-r--r--docs/fr/user/installation.rst6
2 files changed, 9 insertions, 1 deletions
diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst
index 586b01ad..182ed418 100644
--- a/docs/en/user/installation.rst
+++ b/docs/en/user/installation.rst
@@ -151,3 +151,7 @@ Assuming you install wallabag in the /var/www/wallabag folder, here's the recipe
151 } 151 }
152 152
153After reloading or restarting nginx, you should now be able to access wallabag at http://domain.tld. 153After reloading or restarting nginx, you should now be able to access wallabag at http://domain.tld.
154
155.. note::
156
157 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``.
diff --git a/docs/fr/user/installation.rst b/docs/fr/user/installation.rst
index 53cc4adf..e8f72717 100644
--- a/docs/fr/user/installation.rst
+++ b/docs/fr/user/installation.rst
@@ -63,7 +63,7 @@ Et accéder wallabag à l'adresse http://lipdevotreserveur:8000
63.. note:: 63.. note::
64 64
65 Pour définir des paramètres via des variables d'environnement, vous pouvez les spécifier avec le préfixe ``SYMFONY__``. Par exemple, ``SYMFONY__DATABASE_DRIVER``. Vous pouvez lire `documentation Symfony 65 Pour définir des paramètres via des variables d'environnement, vous pouvez les spécifier avec le préfixe ``SYMFONY__``. Par exemple, ``SYMFONY__DATABASE_DRIVER``. Vous pouvez lire `documentation Symfony
66<http://symfony.com/doc/current/cookbook/configuration/external_parameters.html>`__ pour en savoir plus. 66<http://symfony.com/doc/current/cookbook/configuration/external_parameters.html>`__ pour en savoir plus.
67 67
68Installation avec Apache 68Installation avec Apache
69------------------------ 69------------------------
@@ -149,3 +149,7 @@ En imaginant que vous vouliez installer wallabag dans le dossier /var/www/wallab
149 } 149 }
150 150
151Après que vous ayez rechargé/redémarré Nginx, vous devriez pouvoir avoir accès à wallabag à l'adresse http://domain.tld. 151Après que vous ayez rechargé/redémarré Nginx, vous devriez pouvoir avoir accès à wallabag à l'adresse http://domain.tld.
152
153.. note::
154
155 Si vous voulez importer un fichier important dans wallabag, vous debez ajouter cette ligne dans votre configuration nginx ``client_max_body_size XM; # allows file uploads up to X megabytes``.