diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-11-06 15:34:08 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-11-06 15:34:08 +0100 |
commit | db3838545cef117e05c63afc1e7ebfdf8c8d3a4e (patch) | |
tree | 2090dfc06db67491d3bf778379cdf8f759c5ee23 /docs/en/developer | |
parent | b5571b52ccbc11d71637e1ccb07421cf606ac846 (diff) | |
download | wallabag-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.rst | 32 |
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 @@ | |||
1 | Maintenance mode | ||
2 | ================ | ||
3 | |||
4 | If you have some long tasks to do on your wallabag instance, you can enable a maintenance mode. | ||
5 | Nobody will have access to your instance. | ||
6 | |||
7 | Enable maintenance mode | ||
8 | ----------------------- | ||
9 | |||
10 | To enable maintenance mode, execute this command: | ||
11 | |||
12 | :: | ||
13 | |||
14 | bin/console lexik:maintenance:lock --no-interaction -e=prod | ||
15 | |||
16 | You 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 | |||
25 | Disable maintenance mode | ||
26 | ------------------------ | ||
27 | |||
28 | To disable maintenance mode, execute this command: | ||
29 | |||
30 | :: | ||
31 | |||
32 | bin/console lexik:maintenance:unlock -e=prod | ||