aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2016-10-10 10:20:32 +0200
committerNicolas Lœuillet <nicolas@loeuillet.org>2016-10-10 10:20:32 +0200
commit7c1225347db8b516cc268709939f6b359bc283c1 (patch)
tree7a516132f42dbb9e8c3bf371dfd100088d50efdf /docs
parent84e3c36e02e4ffb4611f6e1eca37c97a0ffb4660 (diff)
downloadwallabag-7c1225347db8b516cc268709939f6b359bc283c1.tar.gz
wallabag-7c1225347db8b516cc268709939f6b359bc283c1.tar.zst
wallabag-7c1225347db8b516cc268709939f6b359bc283c1.zip
Update documentation
Diffstat (limited to 'docs')
-rw-r--r--docs/de/user/installation.rst5
-rw-r--r--docs/en/user/installation.rst9
-rw-r--r--docs/fr/user/installation.rst5
3 files changed, 8 insertions, 11 deletions
diff --git a/docs/de/user/installation.rst b/docs/de/user/installation.rst
index bee3249b..2bb86269 100644
--- a/docs/de/user/installation.rst
+++ b/docs/de/user/installation.rst
@@ -57,14 +57,13 @@ Um wallabag selbst zu installieren, musst du die folgenden Kommandos ausführen:
57:: 57::
58 58
59 git clone https://github.com/wallabag/wallabag.git 59 git clone https://github.com/wallabag/wallabag.git
60 cd wallabag 60 cd wallabag && make install
61 ./install.sh
62 61
63Um PHPs eingebauten Server zu starten und zu testen, ob alles korrekt installiert wurde, kannst du folgendes Kommando ausführen: 62Um PHPs eingebauten Server zu starten und zu testen, ob alles korrekt installiert wurde, kannst du folgendes Kommando ausführen:
64 63
65:: 64::
66 65
67 php bin/console server:run --env=prod 66 make run
68 67
69und wallabag unter http://deineserverip:8000 erreichen. 68und wallabag unter http://deineserverip:8000 erreichen.
70 69
diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst
index 0920b976..e08e0306 100644
--- a/docs/en/user/installation.rst
+++ b/docs/en/user/installation.rst
@@ -56,14 +56,13 @@ To install wallabag itself, you must run the following commands:
56:: 56::
57 57
58 git clone https://github.com/wallabag/wallabag.git 58 git clone https://github.com/wallabag/wallabag.git
59 cd wallabag 59 cd wallabag && make install
60 ./install.sh
61 60
62To start PHP's build-in server and test if everything did install correctly, you can do: 61To start PHP's build-in server and test if everything did install correctly, you can do:
63 62
64:: 63::
65 64
66 php bin/console server:run --env=prod 65 make run
67 66
68And access wallabag at http://yourserverip:8000 67And access wallabag at http://yourserverip:8000
69 68
@@ -240,12 +239,12 @@ Rights access to the folders of the project
240Test environment 239Test environment
241~~~~~~~~~~~~~~~~ 240~~~~~~~~~~~~~~~~
242 241
243When we just want to test wallabag, we just run the command ``php bin/console server:run --env=prod`` to start our wallabag instance and everything will go smoothly because the user who started the project can access to the current folder naturally, without any problem. 242When we just want to test wallabag, we just run the command ``make run`` to start our wallabag instance and everything will go smoothly because the user who started the project can access to the current folder naturally, without any problem.
244 243
245Production environment 244Production environment
246~~~~~~~~~~~~~~~~~~~~~~ 245~~~~~~~~~~~~~~~~~~~~~~
247 246
248As soon as we use Apache or Nginx to access to our wallabag instance, and not from the command ``php bin/console server:run --env=prod`` to start it, we should take care to grant the good rights on the good folders to keep safe all the folders of the project. 247As soon as we use Apache or Nginx to access to our wallabag instance, and not from the command ``make run`` to start it, we should take care to grant the good rights on the good folders to keep safe all the folders of the project.
249 248
250To do so, the folder name, known as ``DocumentRoot`` (for apache) or ``root`` (for Nginx), has to be absolutely accessible by the Apache/Nginx user. Its name is generally ``www-data``, ``apache`` or ``nobody`` (depending on linux system used). 249To do so, the folder name, known as ``DocumentRoot`` (for apache) or ``root`` (for Nginx), has to be absolutely accessible by the Apache/Nginx user. Its name is generally ``www-data``, ``apache`` or ``nobody`` (depending on linux system used).
251 250
diff --git a/docs/fr/user/installation.rst b/docs/fr/user/installation.rst
index 55614d72..b32707f8 100644
--- a/docs/fr/user/installation.rst
+++ b/docs/fr/user/installation.rst
@@ -54,14 +54,13 @@ Pour installer wallabag, vous devez exécuter ces commandes :
54:: 54::
55 55
56 git clone https://github.com/wallabag/wallabag.git 56 git clone https://github.com/wallabag/wallabag.git
57 cd wallabag 57 cd wallabag && make install
58 ./install.sh
59 58
60Pour démarrer le serveur interne à php et vérifier que tout s'est installé correctement, vous pouvez exécuter : 59Pour démarrer le serveur interne à php et vérifier que tout s'est installé correctement, vous pouvez exécuter :
61 60
62:: 61::
63 62
64 php bin/console server:run --env=prod 63 make run
65 64
66Et accéder wallabag à l'adresse http://lipdevotreserveur:8000 65Et accéder wallabag à l'adresse http://lipdevotreserveur:8000
67 66