aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/en/developer
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-06 15:34:08 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-06 15:34:08 +0100
commitdb3838545cef117e05c63afc1e7ebfdf8c8d3a4e (patch)
tree2090dfc06db67491d3bf778379cdf8f759c5ee23 /docs/en/developer
parentb5571b52ccbc11d71637e1ccb07421cf606ac846 (diff)
downloadwallabag-db3838545cef117e05c63afc1e7ebfdf8c8d3a4e.tar.gz
wallabag-db3838545cef117e05c63afc1e7ebfdf8c8d3a4e.tar.zst
wallabag-db3838545cef117e05c63afc1e7ebfdf8c8d3a4e.zip
Removed Maintenance bundle
Diffstat (limited to 'docs/en/developer')
-rw-r--r--docs/en/developer/maintenance.rst32
1 files changed, 0 insertions, 32 deletions
diff --git a/docs/en/developer/maintenance.rst b/docs/en/developer/maintenance.rst
deleted file mode 100644
index 6d55ed60..00000000
--- a/docs/en/developer/maintenance.rst
+++ /dev/null
@@ -1,32 +0,0 @@
1Maintenance mode
2================
3
4If you have some long tasks to do on your wallabag instance, you can enable a maintenance mode.
5Nobody will have access to your instance.
6
7Enable maintenance mode
8-----------------------
9
10To enable maintenance mode, execute this command:
11
12::
13
14 bin/console lexik:maintenance:lock --no-interaction -e=prod
15
16You can set your IP address in ``app/config/config.yml`` if you want to access to wallabag even if maintenance mode is enabled. For example:
17
18::
19
20 lexik_maintenance:
21 authorized:
22 ips: ['127.0.0.1']
23
24
25Disable maintenance mode
26------------------------
27
28To disable maintenance mode, execute this command:
29
30::
31
32 bin/console lexik:maintenance:unlock -e=prod