1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nextcloud_ynh.git synced 2024-09-03 19:55:57 +02:00

Adding doc to change folder emplacement fr & en

This commit is contained in:
Alexis IMBERT 2024-03-04 22:00:36 +01:00
parent 9a7bfdafeb
commit d65286ad6a
2 changed files with 73 additions and 30 deletions

View file

@ -10,26 +10,47 @@ Alternatively, you may open a 'Nextcloud shell' with `sudo yunohost app shell __
### Change data folder location ### Change data folder location
The following command shows the current location of the data folder. It may be worth changing the default location of the Nextcloud folder to store data on a second hard disk.
1. Find the current Nextcloud data path
```bash ```bash
yunohost app setting __APP__ data_dir yunohost app setting __APP__ data_dir
``` ```
After installation, the result should be : This command should display :
```bash ```bash
__DATA_DIR__ __DATA_DIR__
``` ```
To modify the data folder, issue this command 1. Move Nextcloud data to the new location:
For the example, we'll use the `/media/storage/nextcloud` folder.
```bash ```bash
yunohost app setting __APP__ data_dir -v /your/custom/data-path mv __DATA_DIR__ /media/stockage/nextcloud
``` ```
Change the permissions of the folder :
1. Change folder owner :
```bash ```bash
chown nextcloud:nextcloud /your/custom/data-path chown nextcloud:nextcloud /media/storage/nextcloud
```
1. Create a symbolic link between the default folder and the new one:
```bash
ln -s /media/stockage/nextcloud __DATA_DIR__
```
1. Test Nextcloud files:
```bash
sudo -u nextcloud php8.2 --define apc.enable_cli=1 /var/www/nextcloud/occ files:scan --all
```
You're done! Your data is now stored in the folder `/media/storage/nextcloud`.
### ONLYOFFICE integration ### ONLYOFFICE integration
ONLYOFFICE is an online rich text document editor which can be integrated in Nextcloud ONLYOFFICE is an online rich text document editor which can be integrated in Nextcloud

View file

@ -10,25 +10,47 @@ Ou bien, vous pouvez ouvrir un "shell Nextcloud" avec `sudo yunohost app shell _
### Changer l'emplacement du dossier data ### Changer l'emplacement du dossier data
Avec la commande suivante vous pouvez voir l'emplacement actuel de dossier data. Il peut être intéressant de changer l'emplacement par défaut du dossier Nextcloud pour stocker les données sur un second disque dur.
1. Trouver le chemin actuel des data Nextcloud
```bash ```bash
yunohost app setting __APP__ data_dir yunohost app setting __APP__ data_dir
``` ```
Après installation le résultat devrait être : Cette commande devrait afficher :
```bash ```bash
__DATA_DIR__ __DATA_DIR__
``` ```
Pour modifier le dossier data faite cette commande 1. Déplacer les données Nextcloud au nouvel emplacement :
Pour l'exemple nous prendrons le dossier `/media/stockage/nextcloud`
```bash ```bash
yunohost app setting __APP__ data_dir -v /chemin/vers/nouvel/emplacement/data mv __DATA_DIR__ /media/stockage/nextcloud
``` ```
Modifier les permissions du dossier :
1. Modifier le propriétaire du dossier :
```bash ```bash
chown nextcloud:nextcloud /your/custom/data-path chown nextcloud:nextcloud /media/stockage/nextcloud
```
1. Créer un lien symbolique entre le dossier par défaut et le nouveau dossier :
```bash
ln -s /media/stockage/nextcloud __DATA_DIR__
```
1. Tester les fichiers Nextcloud :
```bash
sudo -u nextcloud php8.2 --define apc.enable_cli=1 /var/www/nextcloud/occ files:scan --all
```
C'est fini ! Vos données sont maintenant stocké dans le dossier `/media/stockage/nextcloud`
### Intégration d'ONLYOFFICE ### Intégration d'ONLYOFFICE
ONLYOFFICE est un éditeur de texte enrichi en ligne qui peut s'intégrer dans Nextcloud ONLYOFFICE est un éditeur de texte enrichi en ligne qui peut s'intégrer dans Nextcloud