aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2016-10-10 13:01:14 +0200
committerNicolas Lœuillet <nicolas@loeuillet.org>2016-10-10 13:01:14 +0200
commited11d7f7319dbc3ad9ea8265179f0f32d7d9ef6c (patch)
tree71b449ae7969f6d1185a9b765ab8efe74c7acfff
parent6b1317a627686fea33662f56fa08231b7793803a (diff)
downloadwallabag-ed11d7f7319dbc3ad9ea8265179f0f32d7d9ef6c.tar.gz
wallabag-ed11d7f7319dbc3ad9ea8265179f0f32d7d9ef6c.tar.zst
wallabag-ed11d7f7319dbc3ad9ea8265179f0f32d7d9ef6c.zip
Added page about parameters.yml
-rw-r--r--RELEASE_PROCESS.md2
-rw-r--r--docs/de/user/installation.rst2
-rw-r--r--docs/en/user/android.rst6
-rw-r--r--docs/en/user/parameters.rst48
4 files changed, 53 insertions, 5 deletions
diff --git a/RELEASE_PROCESS.md b/RELEASE_PROCESS.md
index 15855bc7..8ac9bbcd 100644
--- a/RELEASE_PROCESS.md
+++ b/RELEASE_PROCESS.md
@@ -29,7 +29,7 @@ git push origin release-$LAST_WALLABAG_RELEASE
29- Run these command to create the package: 29- Run these command to create the package:
30 30
31``` 31```
32make releas emaster /tmp wllbg-release prod 32make release master /tmp wllbg-release prod
33``` 33```
34 34
35- [Create the new release on GitHub](https://github.com/wallabag/wallabag/releases/new). You have to upload on this page the package. 35- [Create the new release on GitHub](https://github.com/wallabag/wallabag/releases/new). You have to upload on this page the package.
diff --git a/docs/de/user/installation.rst b/docs/de/user/installation.rst
index 2bb86269..0d082e41 100644
--- a/docs/de/user/installation.rst
+++ b/docs/de/user/installation.rst
@@ -7,7 +7,7 @@ Voraussetzungen
7wallabag ist kompatibel mit PHP >= 5.5, inkl. PHP 7. 7wallabag ist kompatibel mit PHP >= 5.5, inkl. PHP 7.
8 8
9.. note:: 9.. note::
10Pour installer wallabag facilement, nous avons créé un ``Makefile``, vous avez donc besoin d'avoir installé l'outil ``make``. 10To install wallabag easily, we create a ``Makefile``, so you need to have the ``make`` tool.
11 11
12wallabag nutzt eine große Anzahl an Bibliotheken, um zu funktionieren. Diese Bibliotheken müssen mit einem Tool namens Composer installiert werden. Du musst es installieren sofern du es bisher noch nicht gemacht hast. 12wallabag nutzt eine große Anzahl an Bibliotheken, um zu funktionieren. Diese Bibliotheken müssen mit einem Tool namens Composer installiert werden. Du musst es installieren sofern du es bisher noch nicht gemacht hast.
13 13
diff --git a/docs/en/user/android.rst b/docs/en/user/android.rst
index eec130f6..ccbad264 100644
--- a/docs/en/user/android.rst
+++ b/docs/en/user/android.rst
@@ -35,7 +35,7 @@ After you have filled in your data, push the button Connection test and wait for
35 :alt: Connection test with your wallabag data 35 :alt: Connection test with your wallabag data
36 :align: center 36 :align: center
37 37
38The connection test shall finish with success. If not, you need to fix this first until you proceed. 38The connection test should finish with success. If not, you need to fix this first until you proceed.
39 39
40.. image:: ../../img/user/android_configuration_connection_test_success.en.png 40.. image:: ../../img/user/android_configuration_connection_test_success.en.png
41 :alt: Connection test successful 41 :alt: Connection test successful
@@ -65,10 +65,10 @@ After hitting the save button, you get the following screen. The app proposes to
65 :alt: Settings saved the first time 65 :alt: Settings saved the first time
66 :align: center 66 :align: center
67 67
68Finally after the syncronisation finished successfully, you are presented the list of unread articles. 68Finally after the synchronisation finished successfully, you are presented to the list of unread articles.
69 69
70.. image:: ../../img/user/android_unread_feed_synced.en.png 70.. image:: ../../img/user/android_unread_feed_synced.en.png
71 :alt: Filled article list cause feeds successfully syncronized 71 :alt: Filled article list cause feeds successfully synchronized
72 :align: center 72 :align: center
73 73
74 74
diff --git a/docs/en/user/parameters.rst b/docs/en/user/parameters.rst
new file mode 100644
index 00000000..94eff689
--- /dev/null
+++ b/docs/en/user/parameters.rst
@@ -0,0 +1,48 @@
1What is the meaning of the parameters?
2======================================
3
4.. code-block:: yml
5
6 # Database parameters
7 database_driver: pdo_sqlite or pdo_mysql or pdo_pgsql
8 database_host: 127.0.0.1
9 database_port: ~
10 database_name: symfony
11 database_user: root
12 database_password: ~
13 database_path: "%kernel.root_dir%/../data/db/wallabag.sqlite" or empty (when using mysql or postgresql)
14 database_table_prefix: wallabag_
15 database_socket: null
16
17 # Configuration to send emails from wallabag
18 mailer_transport: smtp
19 mailer_host: 127.0.0.1
20 mailer_user: ~
21 mailer_password: ~
22
23 locale: en # Default language of your wallabag instance
24
25 secret: ovmpmAWXRCabNlMgzlzFXDYmCFfzGv # A random string used for security
26
27 twofactor_auth: true # true to enable Two factor authentication
28 twofactor_sender: no-reply@wallabag.org
29
30 fosuser_registration: true # true to enable public registration
31 fosuser_confirmation: true # true to send a confirmation by email for each registration
32
33 from_email: no-reply@wallabag.org # email address used in From: field in each email
34
35 rss_limit: 50 # limit for RSS feeds
36
37 # RabbitMQ configuration
38 rabbitmq_host: localhost
39 rabbitmq_port: 5672
40 rabbitmq_user: guest
41 rabbitmq_password: guest
42
43 # Redis configuration
44 redis_scheme: tcp
45 redis_host: localhost
46 redis_port: 6379
47 redis_path: null
48