Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Doc tomdereub #737

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions doc/ADMIN.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,14 @@ 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.

### Trashbin and file versions retention

By default, Nextcloud keeps files in trashbin and old versions of files, and delete them only when the disk space is almost full. (cf : https://docs.nextcloud.com/server/18/admin_manual/configuration_server/config_sample_php_parameters.html#deleted-items-trash-bin)

You can change this by editing this file : /var/www/nextcloud/config/config.php - Just add this lines :
```
'trashbin_retention_obligation' => 'auto, 30',
'versions_retention_obligation' => 'auto, 90',
```
In this case, nextcloud will delete files in trashbin older than 30 days, and file versions older than 90 days.
19 changes: 15 additions & 4 deletions doc/ADMIN_fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ 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 ...`

### Intégration d'ONLYOFFICE
### Backend Hautes Performances

ONLYOFFICE est un éditeur de texte enrichi en ligne qui peut s'intégrer dans Nextcloud
Le backend Hautes Performances est une application sur Nextcloud qui devrait accélérer l'instance, plus d'informations ici : https://github.com/nextcloud/notify_push#about

#### Backend Hautes Performances
### Intégration d'ONLYOFFICE

Le backend Hautes Performances est une application sur Nextcloud qui devrait accélérer l'instance, plus d'informations ici : https://github.com/nextcloud/notify_push#about
ONLYOFFICE est un éditeur de texte enrichi en ligne qui peut s'intégrer dans Nextcloud

#### Avec l'application YunoHost (support ARM64, meilleures performances)

Expand All @@ -26,3 +26,14 @@ 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.

### Gestion des versions et de la corbeille de nextcloud

Par défaut, Nextcloud conserve les fichiers supprimés et les anciennes versions, et ne les supprime quand l'espace disque est presque plein (cf : https://docs.nextcloud.com/server/18/admin_manual/configuration_server/config_sample_php_parameters.html#deleted-items-trash-bin)
On peut modifier ce comportement en éditant ce fichier : /var/www/nextcloud/config/config.php
Et en ajoutant ces lignes :
```
'trashbin_retention_obligation' => 'auto, 30',
'versions_retention_obligation' => 'auto, 90',
```
Dans ce cas, nextcloud va supprimer les fichiers de la corbeille après 30 jours, et les versions plus vieilles que 90 jours.