aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--docs/en/user/upgrade-2.0.x-2.1.1.rst32
1 files changed, 29 insertions, 3 deletions
diff --git a/docs/en/user/upgrade-2.0.x-2.1.1.rst b/docs/en/user/upgrade-2.0.x-2.1.1.rst
index 898b4ccc..2f08b7bd 100644
--- a/docs/en/user/upgrade-2.0.x-2.1.1.rst
+++ b/docs/en/user/upgrade-2.0.x-2.1.1.rst
@@ -14,6 +14,7 @@ Upgrade on a dedicated web server
14 git fetch --tags 14 git fetch --tags
15 git checkout 2.1.1 --force 15 git checkout 2.1.1 --force
16 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist 16 SYMFONY_ENV=prod composer install --no-dev -o --prefer-dist
17 php bin/console doctrine:migrations:migrate --env=prod
17 php bin/console cache:clear --env=prod 18 php bin/console cache:clear --env=prod
18 19
19Upgrade on a shared hosting 20Upgrade on a shared hosting
@@ -25,7 +26,7 @@ Download the last release of wallabag:
25 26
26.. code-block:: bash 27.. code-block:: bash
27 28
28 wget http://framabag.org/wallabag-release-2.1.1.tar.gz && tar xvf wallabag-release-2.0.8.tar.gz 29 wget http://framabag.org/wallabag-release-2.1.1.tar.gz && tar xvf wallabag-release-2.1.1.tar.gz
29 30
30(md5 hash of the 2.1.1 package: ``9584a3b60a2b2a4de87f536548caac93``) 31(md5 hash of the 2.1.1 package: ``9584a3b60a2b2a4de87f536548caac93``)
31 32
@@ -35,8 +36,33 @@ Please check that your ``app/config/parameters.yml`` contains all the required p
35 36
36.. code-block:: yml 37.. code-block:: yml
37 38
38 39 parameters:
39 40 database_driver: pdo_sqlite
41 database_host: 127.0.0.1
42 database_port: null
43 database_name: symfony
44 database_user: root
45 database_password: null
46 database_path: '%kernel.root_dir%/../data/db/wallabag.sqlite'
47 database_table_prefix: wallabag_
48 mailer_transport: smtp
49 mailer_host: 127.0.0.1
50 mailer_user: null
51 mailer_password: null
52 locale: en
53 secret: ovmpmAWXRCabNlMgzlzFXDYmCFfzGv
54 twofactor_auth: true
55 twofactor_sender: no-reply@wallabag.org
56 fosuser_registration: true
57 fosuser_confirmation: true
58 from_email: no-reply@wallabag.org
59 rss_limit: 50
60 rabbitmq_host: localhost
61 rabbitmq_port: 5672
62 rabbitmq_user: guest
63 rabbitmq_password: guest
64 redis_host: localhost
65 redis_port: 6379
40 66
41If you use SQLite, you must also copy your ``data/`` folder inside the new installation. 67If you use SQLite, you must also copy your ``data/`` folder inside the new installation.
42 68