From 72b9c379c317c5991a7e2991e25f44353f3ef14e Mon Sep 17 00:00:00 2001 From: Julius Knorr Date: Wed, 24 Jun 2026 16:26:42 +0200 Subject: [PATCH] docs: use sudo -E -u www-data php occ syntax in euro-office config Assisted-by: ClaudeCode:claude-opus-4-8 Signed-off-by: Julius Knorr --- admin_manual/office/euro-office/configuration.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/admin_manual/office/euro-office/configuration.rst b/admin_manual/office/euro-office/configuration.rst index 7d9eb9dc1ce..bb67b39fc0b 100644 --- a/admin_manual/office/euro-office/configuration.rst +++ b/admin_manual/office/euro-office/configuration.rst @@ -18,7 +18,7 @@ Alternatively, install the app using the :command:`occ` command: .. code-block:: bash - php occ app:install eurooffice + sudo -E -u www-data php occ app:install eurooffice Server settings --------------- @@ -215,10 +215,10 @@ Settings can also be managed via :command:`occ`: .. code-block:: bash # Read a setting - php occ config:app:get eurooffice DocumentServerUrl + sudo -E -u www-data php occ config:app:get eurooffice DocumentServerUrl # Write a setting - php occ config:app:set eurooffice DocumentServerUrl --value="https://office.example.com/" + sudo -E -u www-data php occ config:app:set eurooffice DocumentServerUrl --value="https://office.example.com/" The ``eurooffice:documentserver`` command shows the configured server URL and optionally tests the connection: @@ -226,10 +226,10 @@ tests the connection: .. code-block:: bash # Print the currently configured Document Server URL - php occ eurooffice:documentserver + sudo -E -u www-data php occ eurooffice:documentserver # Check the connection to the Document Server - php occ eurooffice:documentserver --check + sudo -E -u www-data php occ eurooffice:documentserver --check config.php ----------