I’m really struggeling after long sessions in reading the forum, testing obvious solutions for other users and using AI to configure my setup according the error messages. I still can’t get nextcloud and onlyoffice to communicate. Therefore I’am asking for your support on fixing the installation.
The Configuration and Basics
-
Nextcloud Server version (e.g., 29.x.x):
- Nextcloud Hub 25 Autumn (32.0.3)
-
Operating system and version (e.g., Ubuntu 24.04):
-
Proxmox 9.1.4 on debian
-
Nextcloud local on separate VM (ID 100)
-
NPMplus 2.12.3 on separate LXC (ID 111)
-
Onlyoffice Doc-Server on separate LXC (ID 103)
-
Adguard home on separate LXC (ID 110)
-
-
Reverse proxy and version _(e.g. nginx 1.27.2)
- NPMplus2.12.3 on debian on separate LXC (ID 111)
-
PHP version (e.g, 8.3):
- 8.4.2
-
Is this the first time you’ve seen this error? (Yes / No):
- Yes
-
When did this problem seem to first start?
- Integrating the OnlyOffice App in Nextcloud
-
Installation method (e.g. AlO, NCP, Bare Metal/Archive, etc.)
- bare
-
Are you using CloudfIare, mod_security, or similar? (Yes / No)
- No
Summary of the issue you are facing:
Fehler - onlyoffice
Exception Im Dokumentenservice ist ein Fehler aufgetreten:
Error while downloading the document file to be converted.
getConvertedUri on check error
Steps to replicate it (hint: details matter!)
- Adguard used to define DNS rewrites to Proxyserver
- NPMplus configured to portforward nextcloud.lan and onlyoffice.lan to destination
Configuration Onlyoffice.lan
Onlyoffice.lan is forced to https
Individual settings npmplus for onlyoffice.lan
# — OnlyOffice WebSocket Support —
proxy_http_version 1.1;
# Upgrade Header für WebSocket
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection “upgrade”;
# Timeout für Co-Editing (stabil)
proxy_read_timeout 36000s;
proxy_send_timeout 36000s;
# Header für OnlyOffice Backend
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
Configuration nextcloud.lan
Nextcloud.lan is forced to https
Individual settings npmplus for nextcloud.lan
# — Nextcloud backend für ONLYOFFICE stabilisieren —
# Backend immer HTTP/1.1
proxy_http_version 1.1;
# Upgrade im Request entfernen
proxy_set_header Upgrade “”;
proxy_set_header Connection “”;
# Upgrade im RESPONSE entfernen (ENTSCHEIDEND)
proxy_hide_header Upgrade;
proxy_hide_header Connection;
# Standard Forward Header
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Lange Timeouts für Dokumente
proxy_read_timeout 36000s;
proxy_send_timeout 36000s;
-
Onlyoffice Healthcheck (curl -vk https://onlyoffice.lan/healthcheck)
from nextcloud VM à Request completely sent off, HTTP/2 200
from onlyoofice LXC à Request completely sent off, HTTP/2 200- Inputs in Onlyoffice App integration
Server address -->https://onlyoffice.lan
secret --> mysecret
Authorization-Header --> Authorization
Onlyoffice Docs Server -->https://onlyoffice.lan
internal server address -->https://nextcloud.lan
- Inputs in Onlyoffice App integration
5. Nextcloud Config.php
<?php
$CONFIG = array (
'instanceid' => '40320247cbba0',
'passwordsalt' => 'password',
'secret' => 'secret',
'trusted_domains' =>
array (
0 => 'nextcloud.lan',
1 => 'onlyoffice.lan',
),
'allow_local_remote_servers' => true,
'trusted_proxies' =>
array (
0 => '192.168.178.142',
),
'forwarded_for_headers' =>
array (
0 => 'HTTP_X_FORWARDED_FOR',
1 => 'HTTP_X_REAL_IP',
),
'overwriteprotocol' => 'https',
'overwritehost' => 'nextcloud.lan:443',
'overwritewebroot' => '/',
'dbtype' => 'mysql',
'version' => '32.0.3.2',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextcloud',
'dbpassword' => 'mypassword',
'datadirectory' => '/var/www/nextcloud-data',
'overwrite.cli.url' => 'https://nextcloud.lan:443',
'filesystem_check_changes' => 1,
'filelocking.enabled' => true,
'memcache.local' => '\\OC\\Memcache\\Redis',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => '/var/run/redis/redis.sock',
'port' => 0,
'timeout' => 0.0,
),
'logtimezone' => 'Europe/Berlin',
'log_type' => 'file',
'logfile' => '/var/www/nextcloud-data/nextcloud.log',
'loglevel' => 3,
'maintenance' => false,
'maintenance_window_start' => 2,
'theme' => '',
'installed' => true,
'config_preset' => 2,
'onlyoffice' =>
array (
'verify_peer_off' => true,
'jwt_header' => 'Authorization',
'jwt_secret' => 'mysecret',
'trusted_domains' =>
array (
0 => 'https://onlyoffice.lan',
1 => 'https://nextcloud.lan',
),
),
'default_timezone' => 'Europe/Berlin',
'app_install_overwrite' =>
array (
),
);
6. Onlyoffice local.json
{
"services": {
"CoAuthoring": {
"sql": {
"type": "postgres",
"dbHost": "localhost",
"dbPort": "5432",
"dbName": "onlyoffice",
"dbUser": "onlyoffice_user",
"dbPass": "personalpwd"
},
"server": {
"port": 8000
},
"jwt": {
"enable": true,
"secret": "mysecret",
"header": "Authorization"
}
}
},
"Storage": {
"verify_peer_off": true
},
"rabbitmq": {
"url": "amqp://onlyoffice_rmq:secret@localhost"
},
"redis": {
"host": "localhost",
"port": 6379
},
"request-filtering": {
"allowPrivateIPAddress": true,
"allowMetaIPAddress": true
},
"log": {
"level": "DEBUG"
}
}
7. Onlyoffice default.json
RejectUnauhtorized already set to false
"requestDefaults": {
"headers": {
"User-Agent": "Node.js/6.13",
"Connection": "Keep-Alive"
},
"rejectUnauthorized": false
},
8. Error message when entering the onlyoffice app integration
Exception - Im Dokumentenservice ist ein Fehler aufgetreten: Error while downloading the document file to be converted.
9. Differing mysecret in NC config:list
Even though I syncronized the jwt_secret more than one and got the correct output on the call sudo -u www-data php /var/www/nextcloud/occ config:app:get onlyoffice jwt_secret there is still a different jwt_secret in the config:list
Log entries
Onlyoffice
onlyoffice:~# tail -f /var/log/onlyoffice/documentserver/docservice/out.log
at Module.require (pkg/prelude/bootstrap.js:1846:31)
at require (node:internal/modules/helpers:182:18)
at Object. (/snapshot/server/Common/sources/storage/storage-base.js)
Node.js v20.19.6
[2026-01-10T13:52:51.298] [WARN] [localhost] [docId] [userId] nodeJS - Express server starting…
[2026-01-10T13:52:51.299] [WARN] [localhost] [docId] [userId] nodeJS - Set services.CoAuthoring.token.enable.browser, services.CoAuthoring.token.enable.request.inbox, services.CoAuthoring.token.enable.request.outbox in the Document Server config to prevent an unauthorized access to your documents and the substitution of important parameters in Document Server requests.
[2026-01-10T13:52:51.307] [WARN] [localhost] [docId] [userId] nodeJS - notifyLicenseExpiration(): expiration date is not defined
[2026-01-10T13:52:51.308] [WARN] [localhost] [docId] [userId] nodeJS - notifyLicenseExpiration(): expiration date is not defined
[2026-01-10T13:52:51.435] [WARN] [localhost] [docId] [userId] nodeJS - Express server listening on port 8000 in production-linux mode. Version: 9.2.1. Build: 8
onlyoffice:~# tail -f /var/log/onlyoffice/documentserver/converter/out.log
at ClientRequest. (/snapshot/server/Common/node_modules/follow-redirects/index.js:49:24)
at ClientRequest.emit (node:events:524:28)
at emitErrorEvent (node:_http_client:101:11)
at TLSSocket.socketErrorListener (node:_http_client:504:5)
at TLSSocket.emit (node:events:524:28)
at emitErrorNT (node:internal/streams/destroy:169:8)
at emitErrorCloseNT (node:internal/streams/destroy:128:3)
at Axios.request (/snapshot/server/Common/node_modules/axios/dist/node/axios.cjs)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Object.downloadUrlPromise (/snapshot/server/Common/sources/utils.js)
Nextcloud
{"reqId":"aWJNvMOddOOEvqtVOsV-QgAAAAM","level":3,"time":"2026-01-10T14:01:52+01:00","remoteAddr":"192.168.178.91","user":"admin","app":"onlyoffice","method":"PUT","url":"/index.php/apps/onlyoffice/ajax/settings/address","message":"getConvertedUri on check error","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36","version":"32.0.3.2","exception":{"Exception":"Exception","Message":"Im Dokumentenservice ist ein Fehler aufgetreten: Error while downloading the document file to be converted.","Code":0,"Trace":[{"file":"/var/www/nextcloud/apps/onlyoffice/lib/DocumentService.php","line":104,"function":"processConvServResponceError","class":"OCA\\Onlyoffice\\DocumentService","type":"->"},{"file":"/var/www/nextcloud/apps/onlyoffice/lib/DocumentService.php","line":472,"function":"getConvertedUri","class":"OCA\\Onlyoffice\\DocumentService","type":"->"},{"file":"/var/www/nextcloud/apps/onlyoffice/lib/Controller/SettingsController.php","line":207,"function":"checkDocServiceUrl","class":"OCA\\Onlyoffice\\DocumentService","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Http/Dispatcher.php","line":204,"function":"saveAddress","class":"OCA\\Onlyoffice\\Controller\\SettingsController","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/Http/Dispatcher.php","line":118,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->"},{"file":"/var/www/nextcloud/lib/private/AppFramework/App.php","line":153,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->"},{"file":"/var/www/nextcloud/lib/private/Route/Router.php","line":321,"function":"main","class":"OC\\AppFramework\\App","type":"::"},{"file":"/var/www/nextcloud/lib/base.php","line":1061,"function":"match","class":"OC\\Route\\Router","type":"->"},{"file":"/var/www/nextcloud/index.php","line":25,"function":"handleRequest","class":"OC","type":"::"}],"File":"/var/www/nextcloud/apps/onlyoffice/lib/DocumentService.php","Line":269,"message":"getConvertedUri on check error","exception":{},"CustomMessage":"getConvertedUri on check error"}}
Configuration
Nextcloud config.list
{
"system": {
"instanceid": "***REMOVED SENSITIVE VALUE***",
"passwordsalt": "***REMOVED SENSITIVE VALUE***",
"secret": "***REMOVED SENSITIVE VALUE***",
"trusted_domains": [
"nextcloud.lan",
"onlyoffice.lan"
],
"allow_local_remote_servers": true,
"trusted_proxies": "***REMOVED SENSITIVE VALUE***",
"forwarded_for_headers": [
"HTTP_X_FORWARDED_FOR",
"HTTP_X_REAL_IP"
],
"overwriteprotocol": "https",
"overwritehost": "nextcloud.lan:443",
"overwritewebroot": "\/",
"dbtype": "mysql",
"version": "32.0.3.2",
"dbname": "***REMOVED SENSITIVE VALUE***",
"dbhost": "***REMOVED SENSITIVE VALUE***",
"dbport": "",
"dbtableprefix": "oc_",
"mysql.utf8mb4": true,
"dbuser": "***REMOVED SENSITIVE VALUE***",
"dbpassword": "***REMOVED SENSITIVE VALUE***",
"datadirectory": "***REMOVED SENSITIVE VALUE***",
"overwrite.cli.url": "https:\/\/nextcloud.lan:443",
"filesystem_check_changes": 1,
"filelocking.enabled": true,
"memcache.local": "\\OC\\Memcache\\Redis",
"memcache.distributed": "\\OC\\Memcache\\Redis",
"memcache.locking": "\\OC\\Memcache\\Redis",
"redis": {
"host": "***REMOVED SENSITIVE VALUE***",
"port": 0,
"timeout": 0
},
"logtimezone": "Europe\/Berlin",
"log_type": "file",
"logfile": "\/var\/www\/nextcloud-data\/nextcloud.log",
"loglevel": 3,
"maintenance": false,
"maintenance_window_start": 2,
"theme": "",
"installed": true,
"config_preset": 2,
"onlyoffice": {
"verify_peer_off": true,
"jwt_header": "Authorization",
"jwt_secret": "***REMOVED SENSITIVE VALUE***",
"trusted_domains": [
"https:\/\/onlyoffice.lan",
"https:\/\/nextcloud.lan"
]
},
"default_timezone": "Europe\/Berlin",
"app_install_overwrite": []
},
"apps": {
"activity": {
"enabled": "yes",
"installed_version": "5.0.0-dev.0",
"types": "filesystem"
},
"app_api": {
"enabled": "no",
"installed_version": "32.0.0",
"types": "",
"default_daemon_config": "custom"
},
"backgroundjob": {
"lastjob": "7"
},
"bruteforcesettings": {
"enabled": "yes",
"installed_version": "5.0.0-dev.0",
"types": ""
},
"calendar": {
"enabled": "yes",
"installed_version": "6.1.2",
"types": ""
},
"circles": {
"enabled": "yes",
"installed_version": "32.0.0",
"loopback_tmp_scheme": "https",
"maintenance_run": "0",
"maintenance_update": "{\"3\":1768046401,\"2\":1768050001,\"1\":1768050001}",
"migration_22": "1",
"migration_run": "0",
"types": "filesystem,dav"
},
"cloud_federation_api": {
"enabled": "yes",
"installed_version": "1.16.0",
"types": "filesystem"
},
"comments": {
"enabled": "yes",
"installed_version": "1.22.0",
"types": "logging"
},
"contactsinteraction": {
"enabled": "yes",
"installed_version": "1.13.1",
"types": "dav"
},
"core": {
"backgroundjobs_mode": "cron",
"installedat": "1721979277.8929",
"lastcron": 1768050001,
"lastupdateResult": "[]",
"lastupdatedat": 1768047484,
"metadataGenerationDone": true,
"moveavatarsdone": "yes",
"previewsCleanedUp": "1",
"public_files": "files_sharing\/public.php",
"vendor": "nextcloud",
"files_metadata": {
"photos-original_date_time": {
"value": null,
"type": "int",
"etag": "",
"indexed": true,
"editPermission": 0
},
"photos-size": {
"value": null,
"type": "array",
"etag": "",
"indexed": false,
"editPermission": 0
},
"photos-exif": {
"value": null,
"type": "array",
"etag": "",
"indexed": false,
"editPermission": 0
},
"photos-ifd0": {
"value": null,
"type": "array",
"etag": "",
"indexed": false,
"editPermission": 0
},
"blurhash": {
"value": null,
"type": "string",
"etag": "a457b95d6ad2b5204351e65aaa224a40",
"indexed": false,
"editPermission": 0
},
"photos-gps": {
"value": null,
"type": "array",
"etag": "",
"indexed": false,
"editPermission": 0
},
"photos-place": {
"value": null,
"type": "string",
"etag": "",
"indexed": true,
"editPermission": 0
}
},
"oc.integritycheck.checker": []
},
"dashboard": {
"enabled": "yes",
"installed_version": "7.12.0",
"types": ""
},
"dav": {
"buildCalendarReminderIndex": "yes",
"buildCalendarSearchIndex": "yes",
"builtSocialSearchIndex": "yes",
"chunks_migrated": "1",
"enabled": "yes",
"hasCustomDefaultContact": false,
"installed_version": "1.34.2",
"regeneratedBirthdayCalendarsForYearFix": "yes",
"types": "filesystem"
},
"documentserver_community": {
"enabled": "no",
"installed_version": "0.2.1",
"types": "filesystem"
},
"federatedfilesharing": {
"enabled": "yes",
"installed_version": "1.22.0",
"types": ""
},
"federation": {
"enabled": "yes",
"installed_version": "1.22.0",
"types": "authentication"
},
"files": {
"enabled": "yes",
"installed_version": "2.4.0",
"mimetype_version": "32.0.1.2",
"types": "filesystem"
},
"files_downloadlimit": {
"enabled": "yes",
"installed_version": "5.0.0-dev.0",
"types": ""
},
"files_external": {
"enabled": "yes",
"installed_version": "1.24.0",
"types": "filesystem",
"allow_user_mounting": true,
"user_mounting_backends": "ftp,sftp,smb,\\OC\\Files\\Storage\\SFTP_Key,\\OC\\Files\\Storage\\SMB_OC"
},
"files_pdfviewer": {
"enabled": "yes",
"installed_version": "5.0.0-dev.0",
"types": ""
},
"files_reminders": {
"enabled": "yes",
"installed_version": "1.5.0",
"types": ""
},
"files_sharing": {
"enabled": "yes",
"installed_version": "1.24.1",
"types": "filesystem"
},
"files_trashbin": {
"enabled": "yes",
"installed_version": "1.22.0",
"types": "filesystem,dav"
},
"files_versions": {
"enabled": "yes",
"installed_version": "1.25.0",
"types": "filesystem,dav"
},
"firstrunwizard": {
"enabled": "yes",
"installed_version": "5.0.0-dev.0",
"types": ""
},
"guests": {
"enabled": "no",
"installed_version": "4.6.0",
"types": "authentication"
},
"libresign": {
"enabled": "no",
"installed_version": "12.1.0",
"types": ""
},
"logreader": {
"dateTimeFormat": "\"raw\"",
"enabled": "yes",
"installed_version": "5.0.0-dev.0",
"types": "logging"
},
"lookup_server_connector": {
"enabled": "yes",
"installed_version": "1.20.0",
"types": "authentication"
},
"mail": {
"enabled": "yes",
"installed_version": "5.6.5",
"types": ""
},
"nextcloud_announcements": {
"enabled": "yes",
"installed_version": "4.0.0-dev.0",
"pub_date": "Thu, 24 Oct 2019 00:00:00 +0200",
"types": "logging"
},
"notifications": {
"enabled": "yes",
"installed_version": "5.0.0-dev.0",
"types": "logging"
},
"oauth2": {
"enabled": "yes",
"installed_version": "1.20.0",
"types": "authentication"
},
"onlyoffice": {
"DocumentServerInternalUrl": "https:\/\/onlyoffice.lan\/",
"DocumentServerUrl": "https:\/\/onlyoffice.lan\/",
"JwtSecret": "differingoldsecret",
"StorageUrl": "https:\/\/nextcloud.lan\/",
"defFormats": "{\"docx\":true,\"xlsx\":true,\"pptx\":true,\"docxf\":true,\"oform\":true,\"pdf\":true,\"vsdx\":true,\"odp\":true,\"ods\":true,\"odt\":true,\"doc\":true,\"ppt\":true,\"xls\":true}",
"demo": "{\"available\":false,\"enabled\":false,\"start\":{\"date\":\"2025-11-30 16:26:00.010708\",\"timezone_type\":3,\"timezone\":\"UTC\"}}",
"editFormats": "{\"docm\":true,\"docx\":true,\"dotm\":true,\"dotx\":true,\"txt\":true,\"csv\":true,\"xlsb\":true,\"xlsm\":true,\"xlsx\":true,\"xltm\":true,\"xltx\":true,\"potm\":true,\"potx\":true,\"ppsm\":true,\"ppsx\":true,\"pptm\":true,\"pptx\":true,\"pdf\":true,\"odp\":true,\"ods\":true,\"odt\":true,\"rtf\":true}",
"enableSharing": "false",
"enabled": "yes",
"installed_version": "9.12.0",
"jwt_header": "Authorization",
"jwt_secret": "***REMOVED SENSITIVE VALUE***",
"jwtsecret": "***REMOVED SENSITIVE VALUE***",
"sameTab": "true",
"settings_error": "Im Dokumentenservice ist ein Fehler aufgetreten: Error while downloading the document file to be converted.",
"types": "prevent_group_restriction",
"verify_peer_off": "false"
},
"password_policy": {
"enabled": "yes",
"installed_version": "4.0.0-dev.0",
"types": "authentication"
},
"photos": {
"enabled": "yes",
"installed_version": "5.0.0-dev.1",
"lastPlaceMappedUser": "admin",
"lastPlaceMappingDone": "true",
"types": "dav,authentication"
},
"privacy": {
"enabled": "yes",
"installed_version": "4.0.0-dev.0",
"readableLocation": "de",
"types": ""
},
"profile": {
"enabled": "yes",
"installed_version": "1.1.0",
"types": ""
},
"provisioning_api": {
"enabled": "yes",
"installed_version": "1.22.0",
"types": "prevent_group_restriction"
},
"recommendations": {
"enabled": "yes",
"installed_version": "5.0.0-dev.0",
"types": ""
},
"related_resources": {
"enabled": "yes",
"installed_version": "3.0.0-dev.0",
"types": ""
},
"richdocuments": {
"disable_certificate_verification": "",
"enabled": "no",
"installed_version": "9.0.2",
"types": "filesystem,prevent_group_restriction",
"wopi_url": "https:\/\/nextcloud.lan\/apps\/richdocumentscode\/proxy.php?req="
},
"richdocumentscode": {
"enabled": "no",
"installed_version": "25.4.702",
"types": ""
},
"serverinfo": {
"cached_count_appdata_files": 162124,
"cached_count_filecache": 232757,
"cached_count_storages": 7,
"enabled": "yes",
"installed_version": "4.0.0-dev.0",
"size_appdata_storage": 14028006,
"types": ""
},
"settings": {
"enabled": "yes",
"installed_version": "1.15.1",
"types": ""
},
"sharebymail": {
"enabled": "yes",
"installed_version": "1.22.0",
"types": "filesystem"
},
"snappymail": {
"enabled": "no",
"installed_version": "2.38.2",
"types": ""
},
"support": {
"SwitchUpdaterServerHasRun": "yes",
"enabled": "yes",
"installed_version": "4.0.0-dev.0",
"types": "session"
},
"survey_client": {
"enabled": "yes",
"installed_version": "4.0.0-dev.0",
"types": ""
},
"systemtags": {
"enabled": "yes",
"installed_version": "1.22.0",
"types": "logging"
},
"text": {
"enabled": "yes",
"installed_version": "6.0.1",
"types": "dav"
},
"theming": {
"enabled": "yes",
"installed_version": "2.7.0",
"types": "logging"
},
"twofactor_backupcodes": {
"enabled": "yes",
"installed_version": "1.21.0",
"types": ""
},
"updatenotification": {
"calendar": "6.1.4",
"core": "29.0.16.1",
"enabled": "yes",
"installed_version": "1.22.0",
"types": "",
"update_check_errors": 0
},
"user_status": {
"enabled": "yes",
"installed_version": "1.12.0",
"types": ""
},
"viewer": {
"enabled": "yes",
"installed_version": "5.0.0-dev.0",
"types": ""
},
"weather_status": {
"enabled": "yes",
"installed_version": "1.12.0",
"types": ""
},
"webhook_listeners": {
"enabled": "yes",
"installed_version": "1.3.0",
"types": "filesystem"
},
"workflowengine": {
"enabled": "yes",
"installed_version": "2.14.0",
"types": "filesystem"
}
}
}
Apps
The output of occ app:list (if possible).
> Enabled:
\- activity: 5.0.0-dev.0
\- bruteforcesettings: 5.0.0-dev.0
\- calendar: 6.1.2
\- circles: 32.0.0
\- cloud_federation_api: 1.16.0
\- comments: 1.22.0
\- contactsinteraction: 1.13.1
\- dashboard: 7.12.0
\- dav: 1.34.2
\- federatedfilesharing: 1.22.0
\- federation: 1.22.0
\- files: 2.4.0
\- files_downloadlimit: 5.0.0-dev.0
\- files_external: 1.24.0
\- files_pdfviewer: 5.0.0-dev.0
\- files_reminders: 1.5.0
\- files_sharing: 1.24.1
\- files_trashbin: 1.22.0
\- files_versions: 1.25.0
\- firstrunwizard: 5.0.0-dev.0
\- logreader: 5.0.0-dev.0
\- lookup_server_connector: 1.20.0
\- mail: 5.6.5
\- nextcloud_announcements: 4.0.0-dev.0
\- notifications: 5.0.0-dev.0
\- oauth2: 1.20.0
\- onlyoffice: 9.12.0
\- password_policy: 4.0.0-dev.0
\- photos: 5.0.0-dev.1
\- privacy: 4.0.0-dev.0
\- profile: 1.1.0
\- provisioning_api: 1.22.0
\- recommendations: 5.0.0-dev.0
\- related_resources: 3.0.0-dev.0
\- serverinfo: 4.0.0-dev.0
\- settings: 1.15.1
\- sharebymail: 1.22.0
\- support: 4.0.0-dev.0
\- survey_client: 4.0.0-dev.0
\- systemtags: 1.22.0
\- text: 6.0.1
\- theming: 2.7.0
\- twofactor_backupcodes: 1.21.0
\- updatenotification: 1.22.0
\- user_status: 1.12.0
\- viewer: 5.0.0-dev.0
\- weather_status: 1.12.0
\- webhook_listeners: 1.3.0
\- workflowengine: 2.14.0
Disabled:
\- admin_audit: 1.22.0
\- app_api: 32.0.0 (installed 32.0.0)
\- documentserver_community: 0.2.1 (installed 0.2.1)
\- encryption: 2.20.0
\- suspicious_login: 10.0.0-dev.0
\- twofactor_nextcloud_notification: 6.0.0-dev.0
\- twofactor_totp: 14.0.0
\- user_ldap: 1.23.0



