1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/paheko_ynh.git synced 2024-09-03 19:56:22 +02:00

add admin instructions

This commit is contained in:
rodinux 2023-12-30 17:29:42 +01:00
parent fc0ac8f446
commit 45daca5967
2 changed files with 18 additions and 2 deletions

View file

@ -1,3 +1,11 @@
If you wish, you can add custom configurations inside `__INSTALL_DIR__/config.local.php`.
If you wish, you can add custom configurations inside `__DATA_DIR__/data/config.local.user.php`.
Use the `__DATA-DIR__/data` folder if you want to store documents elsewhere than in the database. Example in `__DATA_DIR__/data/config.local.user.php` file
```
const FILE_STORAGE_BACKEND = 'FileSystem';
const FILE_STORAGE_CONFIG = DATA_ROOT . /files';
```
**Important**: for some reason, email does not work when installing on a subpath. You are encouraged to use a full, dedicated for this domain (with path set to /)

View file

@ -1,4 +1,12 @@
Vous pouvez si vous le souhaitez ajouter des configurations personnelles en éditant le fichier `__INSTALL_DIR__/config.local.php`.
Vous pouvez si vous le souhaitez ajouter des configurations personnelles en éditant le fichier `__DATA_DIR__/data/config.local.user.php`.
Privilégiez le dossier `__DATA-DIR__/data` si vous voulez conserver des documents ailleurs que dans la base de données. Example dans le fichier `__DATA_DIR__/data/config.local.user.php`
```
const FILE_STORAGE_BACKEND = 'FileSystem';
const FILE_STORAGE_CONFIG = DATA_ROOT . '/files';
```
**Important** : Pour une raison quelconque, le courriel ne fonctionne pas lors de linstallation sur une sous-instance. Nous vous encourageons à utiliser un nom de domaine complet dédié à ce domaine (avec le chemin défini sur /).