aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/de/developer/maintenance.rst
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-06-16 06:50:21 +0200
committerGitHub <noreply@github.com>2016-06-16 06:50:21 +0200
commit77c530f43c8d0efd72c12e0b723982a5377c5bc9 (patch)
treee24c7363a795905dc66213e23d75f8345c342a3c /docs/de/developer/maintenance.rst
parentd220a951218149132189dbbdb149236d3701022f (diff)
parent429480357f93f54c04108202efb35e33dcc0f832 (diff)
downloadwallabag-77c530f43c8d0efd72c12e0b723982a5377c5bc9.tar.gz
wallabag-77c530f43c8d0efd72c12e0b723982a5377c5bc9.tar.zst
wallabag-77c530f43c8d0efd72c12e0b723982a5377c5bc9.zip
Merge pull request #2148 from wallabag/start-german-docu
translate documentation to German
Diffstat (limited to 'docs/de/developer/maintenance.rst')
-rw-r--r--docs/de/developer/maintenance.rst32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/de/developer/maintenance.rst b/docs/de/developer/maintenance.rst
new file mode 100644
index 00000000..2a9070e1
--- /dev/null
+++ b/docs/de/developer/maintenance.rst
@@ -0,0 +1,32 @@
1Wartungsmodus
2=============
3
4Wenn du längere Aufgaben auf deiner wallabag Instanz ausführen willst, kannst du den Wartungsmodus aktivieren.
5Keiner wird dann Zugang zu deiner Instanz haben.
6
7Aktivieren des Wartungsmodus
8----------------------------
9
10Um den Wartungsmodus zu aktivieren, führe folgendes Kommando aus:
11
12::
13
14 bin/console lexik:maintenance:lock --no-interaction
15
16Du kannst deine IP Adresse in ``app/config/config.yml`` setzen, wenn du Zugriff zu wallabag haben willst, auch wenn der Wartungsmodus aktiv ist. Zum Beispiel:
17
18::
19
20 lexik_maintenance:
21 authorized:
22 ips: ['127.0.0.1']
23
24
25Deaktivieren des Wartungsmodus
26------------------------
27
28Um den Wartungsmodus zu deaktivieren, führe dieses Kommando aus:
29
30::
31
32 bin/console lexik:maintenance:unlock