From c5b8a6e3901b7b0d28fa8526feccd2dd005cceef Mon Sep 17 00:00:00 2001 From: Alexis IMBERT Date: Tue, 27 Feb 2024 22:53:07 +0100 Subject: [PATCH] adding documentation to change nextcloud data path --- doc/ADMIN.md | 23 ++++++++++++++++++++++- doc/ADMIN_fr.md | 20 ++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) diff --git a/doc/ADMIN.md b/doc/ADMIN.md index 8d401d2..32eb0f4 100644 --- a/doc/ADMIN.md +++ b/doc/ADMIN.md @@ -2,12 +2,32 @@ You can run Nextcloud commands from the command line using: -``` +```bash sudo -u __APP__ php__PHPVERSION__ --define apc.enable_cli=1 __INSTALL_DIR__/occ ... ``` Alternatively, you may open a 'Nextcloud shell' with `sudo yunohost app shell __APP__`, then run `php occ ...` +### Change data folder location + +The following command shows the current location of the data folder. + +```bash +yunohost app setting __APP__ data_dir +``` + +After installation, the result should be : + +```bash +/home/yunohost.app/nextcloud +``` + +To modify the data folder, issue this command + +```bash +yunohost app setting __APP__ data_dir -v /your/custom/data-path +``` + ### ONLYOFFICE integration ONLYOFFICE is an online rich text document editor which can be integrated in Nextcloud @@ -19,6 +39,7 @@ For better performance and ARM64 support (Raspberry Pi, OLinuXino...), install t #### Alternative: With Nextcloud App (no ARM support, lower performance) Nextcloud features a direct integration of ONLYOFFICE through a Nextcloud app. + - Install *Community Document Server* application in your Nextcloud. That's the part that runs ONLYOFFICE server. - Install *ONLYOFFICE* application. That's the client part that will connect to an ONLYOFFICE server. - Then in Settings -> ONLYOFFICE (`https://__DOMAIN____PATH__/settings/admin/onlyoffice`), if you want to configure which file formats should be opened by ONLYOFFICE. diff --git a/doc/ADMIN_fr.md b/doc/ADMIN_fr.md index 06b76b1..5f53895 100644 --- a/doc/ADMIN_fr.md +++ b/doc/ADMIN_fr.md @@ -8,6 +8,25 @@ sudo -u __APP__ php__PHPVERSION__ --define apc.enable_cli=1 __INSTALL_DIR__/occ Ou bien, vous pouvez ouvrir un "shell Nextcloud" avec `sudo yunohost app shell __APP__`, puis lancer `php occ ...` +### Changer l'emplacement du dossier data + +Avec la commande suivante vous pouvez voir l'emplacement actuel de dossier data. + +```bash +yunohost app setting __APP__ data_dir +``` + +Après installation le résultat devrait être : + +```bash +/home/yunohost.app/nextcloud +``` + +Pour modifier le dossier data faite cette commande +```bash +yunohost app setting __APP__ data_dir -v /chemin/vers/nouvel/emplacement/data +``` + ### Intégration d'ONLYOFFICE ONLYOFFICE est un éditeur de texte enrichi en ligne qui peut s'intégrer dans Nextcloud @@ -19,6 +38,7 @@ Pour de meilleures performances et le support de ARM64 (Raspberry Pi, OLinuXino. #### Alternative: avec l'application Nextcloud (pas de support ARM, performances limitées) Nextcloud inclut une intégration directe via une application Nextcloud. + - Installez l'application *Community Document Server* dans votre Nextcloud. C'est la partie qui fait tourner un serveur ONLYOFFICE. - Installez l'application *ONLYOFFICE*. C'est la partie cliente qui va se connecter au serveur ONLYOFFICE. - Ensuite dans les Paramètres -> ONLYOFFICE (`https://__DOMAIN____PATH__/settings/admin/onlyoffice`), si vous voulez configurer quels formats de fichier s'ouvrent avec ONLYOFFICE.