mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
29 lines
850 B
Markdown
29 lines
850 B
Markdown
# The KeeWeb application
|
|
|
|
The KeeWeb application is a password manager integrated into Nextcloud. For example, it allows you to read a KeePass file (*.kdbx*) stored on your Nextcloud instance.
|
|
But sometimes Nextcloud does not let the application support these files, which makes it impossible to read them from KeeWeb. To remedy this,
|
|
[a solution](https://github.com/jhass/nextcloud-keeweb/issues/34) exists.
|
|
|
|
Go to the Nextcloud configuration directory:
|
|
|
|
```bash
|
|
cd /var/www/nextcloud/config/
|
|
```
|
|
|
|
If it does not exist, create the *mimetypemapping.json* file whose owner is the user *nextcloud* :
|
|
|
|
```bash
|
|
sudo su nextcloud -c "nano mimetypemapping.json"
|
|
```
|
|
|
|
Then add in this file the following text:
|
|
|
|
```bash
|
|
{
|
|
"kdbx": ["x-application/kdbx"]
|
|
}
|
|
```
|
|
|
|
Save the file (**CTRL** + **o**) and exit nano (**CTRL** + **c**).
|
|
|
|
Now the problem is fixed.
|