Support intro
Sorry to hear you’re facing problems. 
The community help forum (help.nextcloud.com) is for home and non-enterprise users. Support is provided by other community members on a best effort / “as available” basis. All of those responding are volunteering their time to help you.
If you’re using Nextcloud in a business/critical setting, paid and SLA-based support services can be accessed via portal.nextcloud.com where Nextcloud engineers can help ensure your business keeps running smoothly.
Getting help
In order to help you as efficiently (and quickly!) as possible, please fill in as much of the below requested information as you can.
Before clicking submit: Please check if your query is already addressed via the following resources:
- Official documentation (searchable and regularly updated)
- How to topics and FAQs
- Forum search
(Utilizing these existing resources is typically faster. It also helps reduce the load on our generous volunteers while elevating the signal to noise ratio of the forums otherwise arising from the same queries being posted repeatedly).
Some or all of the below information will be requested if it isn’t supplied; for fastest response please provide as much as you can. ![]()
The Basics
- Nextcloud Server version (e.g., 29.x.x):
- Nextcloud Hub 26 Winter (33.0.0)
- Operating system and version (e.g., Ubuntu 24.04):
- Ubuntu 24.04.4 LTS
- Web server and version (e.g, Apache 2.4.25):
AIO?
- Reverse proxy and version _(e.g. nginx 1.27.2)
Apache 2.4.52
- PHP version (e.g, 8.3):
AIO?
- Is this the first time you’ve seen this error? (Yes / No):
Yes
- When did this problem seem to first start?
with configuration
- Installation method (e.g. AlO, NCP, Bare Metal/Archive, etc.)
AIO
- Are you using CloudfIare, mod_security, or similar? (Yes / No)
No
Summary of the issue you are facing:
I try to set up Nextcloud Assistant with Harp. HaRP is enabled in the Nextcloud AIO interface. In AppAPI setting there is a message “Default deploy daemon is not accessible. Please check its configuration”.
I try to set a shared key, but it always comes back to dummySecret123. I find a password in nextcloud-aio-harp with “docker inspect nextcloud-aio-harp | grep KEY”, and try to used it.
Port 8780 is open on nextcloud-aio-harp. Tested with for example
- docker exec -u www-data nextcloud-aio-mastercontainer nc -zv nextcloud-aio-harp 8780
This returns OK: docker exec -u www-data nextcloud-aio-nextcloud curl -H “harp-shared-key: xxx” -H “docker-engine-porrt: 24000” http://nextcloud-aio-harp:8780/exapps/app_api/v1.44/_ping
But not this (gives 404: Not found): docker exec -u www-data nextcloud-aio-nextcloud curl l -H “harp-shared-key: xxx” http://nextcloud-aio-harp:8780/exapps/app_api/v1.44/_ping
Steps to replicate it (hint: details matter!):
- See above
Log entries
nextcloud-aio-nextcloud:
NOTICE: PHP message: Client error: GET http://nextcloud-aio-harp:8780/exapps/app_api/v1.44/_ping resulted in a 404 Not Found response:
404: Not Found
NOTICE: PHP message: Client error: GET http://nextcloud-aio-harp:8780/exapps/app_api/v1.44/_ping resulted in a 404 Not Found response:
404: Not Found
NOTICE: PHP message: Client error: GET http://nextcloud-aio-harp:8780/exapps/app_api/v1.44/_ping resulted in a 404 Not Found response:
404: Not Found
nextcloud-aio-harp:
INFO: HP_FRP_DISABLE_TLS is set to true. Skipping certificate generation.
INFO: Creating /run/harp/haproxy.cfg from haproxy.cfg.template…
INFO: No /certs/cert.pem found, disabling HTTPS frontends…
INFO: Final /run/harp/haproxy.cfg:
SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
SPDX-License-Identifier: AGPL-3.0-or-later
###############################################################################
haproxy.cfg.template
This template is processed by envsubst in start.sh to replace variables:
HP_EXAPPS_ADDRESS,
HP_EXAPPS_HTTPS_ADDRESS,
HP_SPOA_ADDRESS,
HP_TIMEOUT_CONNECT,
HP_TIMEOUT_CLIENT,
HP_TIMEOUT_SERVER,
If /certs/cert.pem is not found, lines containing “HTTPS_FRONTEND” are
commented out automatically in start.sh.
###############################################################################
global
log stdout local0 warning
maxconn 8192
ca-base /etc/ssl/certs
defaults
log global
option httplog
option dontlognull
timeout connect 30s
timeout client 30s
timeout server 1800s
###############################################################################
FRONTEND: ex_apps (HTTP)
###############################################################################
frontend ex_apps
mode http
bind 0.0.0.0:8780
filter spoe engine exapps-spoe config /etc/haproxy/spoe-agent.conf
http-request silent-drop if { var(txn.exapps.bad_request) -m int eq 1 }
http-request return status 401 content-type text/plain string "401 Unauthorized" if { var(txn.exapps.unauthorized) -m int eq 1 }
http-request return status 403 content-type text/plain string "403 Forbidden" if { var(txn.exapps.forbidden) -m int eq 1 }
http-request return status 404 content-type text/plain string "404 Not Found" if { var(txn.exapps.not_found) -m int eq 1 }
use_backend %[var(txn.exapps.backend)]
###############################################################################
FRONTEND: ex_apps_https (only enabled if /certs/cert.pem exists)
###############################################################################
#HTTPS_FRONTEND frontend ex_apps_https
#HTTPS_FRONTEND mode http
#HTTPS_FRONTEND bind 0.0.0.0:8781 ssl crt /certs/cert.pem
#HTTPS_FRONTEND filter spoe engine exapps-spoe config /etc/haproxy/spoe-agent.conf
#HTTPS_FRONTEND http-request silent-drop if { var(txn.exapps.bad_request) -m int eq 1 }
#HTTPS_FRONTEND http-request return status 401 content-type text/plain string “401 Unauthorized” if { var(txn.exapps.unauthorized) -m int eq 1 }
#HTTPS_FRONTEND http-request return status 403 content-type text/plain string “403 Forbidden” if { var(txn.exapps.forbidden) -m int eq 1 }
#HTTPS_FRONTEND http-request return status 404 content-type text/plain string “404 Not Found” if { var(txn.exapps.not_found) -m int eq 1 }
#HTTPS_FRONTEND use_backend %[var(txn.exapps.backend)]
###############################################################################
BACKENDS: ex_apps & ex_apps_backend_w_bruteforce
###############################################################################
backend ex_apps_backend
mode http
server frp_server 0.0.0.0
http-request set-path %[var(txn.exapps.target_path)]
http-request set-dst var(txn.exapps.target_ip)
http-request set-dst-port var(txn.exapps.target_port)
http-request set-header EX-APP-ID %[var(txn.exapps.exapp_id)]
http-request set-header EX-APP-VERSION %[var(txn.exapps.exapp_version)]
http-request set-header AUTHORIZATION-APP-API %[var(txn.exapps.exapp_token)]
http-request set-header AA-VERSION “32” # TO-DO: temporary, remove it after we update all ExApps.
backend ex_apps_backend_w_bruteforce
mode http
server frp_server 0.0.0.0
http-request set-path %[var(txn.exapps.target_path)]
http-request set-dst var(txn.exapps.target_ip)
http-request set-dst-port var(txn.exapps.target_port)
http-request set-header EX-APP-ID %[var(txn.exapps.exapp_id)]
http-request set-header EX-APP-VERSION %[var(txn.exapps.exapp_version)]
http-request set-header AUTHORIZATION-APP-API %[var(txn.exapps.exapp_token)]
http-request set-header AA-VERSION “32” # TO-DO: temporary, remove it after we update all ExApps.
filter spoe engine exapps-bruteforce-protection-spoe config /etc/haproxy/spoe-agent.conf
###############################################################################
BACKEND: nextcloud_control (HTTP)
###############################################################################
backend nextcloud_control_backend
mode http
server nextcloud_control 127.0.0.1:8200
http-request set-path %[var(txn.exapps.target_path)]
###############################################################################
BACKEND: docker_engine (HTTP)
###############################################################################
backend docker_engine_backend
mode http
server frp_server 127.0.0.1
http-request set-dst-port var(txn.exapps.target_port)
http-request set-path %[var(txn.exapps.target_path)]
# docker system _ping
http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/_ping$ } METH_GET
# docker inspect image
http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/images/.*/json } METH_GET
# container inspect: GET containers/%s/json
http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/containers/nc_app_[a-zA-Z0-9_.-]+/json } METH_GET
# container inspect: GET containers/%s/logs
http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/containers/nc_app_[a-zA-Z0-9_.-]+/logs } METH_GET
# image pull: POST images/create?fromImage=%s
http-request allow if { path,url_dec -m reg -i ^(/v[\d\.]+)?/images/create } METH_POST
http-request deny
backend agents
mode tcp
timeout connect 5s
timeout server 3m
option spop-check
server agent1 127.0.0.1:9600 check
INFO: FRP server configuration generated at /run/harp/frps.toml.
INFO: Generated /run/harp/frps.toml:
bindAddr = “0.0.0.0”
bindPort = 8782
proxyBindAddr = “127.0.0.1”
transport.tls.force = false
log.to = “/run/harp/frps.log”
log.level = “info”
log.maxDays = 3
maxPortsPerClient = 1
allowPorts = [
{ start = 23000, end = 23999 },
{ start = 24000, end = 24099 }
]
[[httpPlugins]]
addr = “127.0.0.1:8200”
path = “/frp_handler”
ops = [“Login”]
INFO: Detected /var/run/docker.sock, generating /run/harp/frpc-docker.toml configuration file…
INFO: Generated /run/harp/frpc-docker.toml:
serverAddr = “127.0.0.1”
serverPort = 8782
transport.tls.enable = false
metadatas.token = “6f678faf4e8998b786290fe0a9ffdbc5554d1464f887e641”
[[proxies]]
remotePort = 24000
type = “tcp”
name = “bundled-deploy-daemon”
[proxies.plugin]
type = “unix_domain_socket”
unixPath = “/var/run/docker.sock”
INFO: Starting Python HaProxy Agent on 127.0.0.1:8200 and 127.0.0.1:9600…
INFO: Waiting for HaRP Agent HTTP (GET http://127.0.0.1:8200/info) to be ready…
INFO: Waiting for SPOA port 127.0.0.1:9600…
INFO: Starting FRP server on 0.0.0.0:8782…
INFO: Waiting for FRP server port 127.0.0.1:8782…
INFO: Starting FRP client for Docker Engine…
INFO: Starting HAProxy…
2026-05-11 14:22:30.143 [I] [sub/root.go:142] start frpc service for config file [/run/harp/frpc-docker.toml]
2026-05-11 14:22:30.144 [I] [client/service.go:295] try to connect to server…
[NOTICE] (7) : Initializing new worker (83)
2026-05-11 14:22:30.149 [I] [client/service.go:287] [719ef1d3af8de708] login to server success, get run id [719ef1d3af8de708]
2026-05-11 14:22:30.149 [I] [proxy/proxy_manager.go:173] [719ef1d3af8de708] proxy added: [bundled-deploy-daemon]
2026-05-11 14:22:30.151 [I] [client/control.go:168] [719ef1d3af8de708] [bundled-deploy-daemon] start proxy success
[NOTICE] (7) : Loading success.
[2026-05-11T14:23:40+0200] [WARNING] Recorded failure for IP 172.18.0.11. Failures in window: 1
[2026-05-11T14:24:37+0200] [ERROR] Missing ‘docker-engine-port’ header.
[2026-05-11T14:27:56+0200] [ERROR] Invalid request path, cannot find AppID: /
[2026-05-11T14:38:55+0200] [ERROR] Missing ‘docker-engine-port’ header.
[2026-05-11T14:44:24+0200] [ERROR] Invalid request path, cannot find AppID: /
[2026-05-11T14:44:24+0200] [WARNING] Recorded failure for IP 172.18.0.11. Failures in window: 1
[2026-05-11T14:45:54+0200] [ERROR] Invalid request path, cannot find AppID: /
[2026-05-11T14:45:54+0200] [WARNING] Recorded failure for IP 172.18.0.2. Failures in window: 1
[2026-05-11T14:50:11+0200] [WARNING] Recorded failure for IP 172.18.0.2. Failures in window: 2
[2026-05-11T14:54:22+0200] [ERROR] No such ExApp enabled: app200i
[2026-05-11T14:54:37+0200] [ERROR] Invalid request path, cannot find AppID: /app200i/v1.44/_ping
[2026-05-11T14:55:06+0200] [ERROR] Invalid request path, cannot find AppID: /v1.44/_ping
[2026-05-11T15:03:54+0200] [ERROR] Invalid request path, cannot find AppID: /_ping
Nextcloud
Please provide the log entries from your Nextcloud log that are generated during the time of problem (via the Copy raw option from Administration settings->Logging screen or from your nextcloud.log located in your data directory). Feel free to use a pastebin/gist service if necessary. (some lines with harp)
file":"/var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php","line":158,"function":"callHandler","class":"GuzzleHttp\\Promise\\Promise","type":"::","args":[1,"*** sensitive parameters replaced ***","*** sensitive parameters replaced ***"]},{"file":"/var/www/html/3rdparty/guzzlehttp/promises/src/TaskQueue.php","line":52,"function":"GuzzleHttp\\Promise\\{closure}","class":"GuzzleHttp\\Promise\\Promise","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php","line":251,"function":"run","class":"GuzzleHttp\\Promise\\TaskQueue","type":"->","args":[true]},{"file":"/var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php","line":227,"function":"invokeWaitFn","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php","line":272,"function":"waitIfPending","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php","line":229,"function":"invokeWaitList","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php","line":69,"function":"waitIfPending","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/3rdparty/guzzlehttp/guzzle/src/Client.php","line":189,"function":"wait","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/3rdparty/guzzlehttp/guzzle/src/ClientTrait.php","line":44,"function":"request","class":"GuzzleHttp\\Client","type":"->","args":["GET","http://nextcloud-aio-harp:8780/exapps/app_api/v1.44/_ping",{"timeout":3,"synchronous":true}]},{"file":"/var/www/html/apps/app_api/lib/DeployActions/DockerActions.php","line":882,"function":"get","class":"GuzzleHttp\\Client","type":"->","args":["http://nextcloud-aio-harp:8780/exapps/app_api/v1.44/_ping",{"timeout":3}]},{"file":"/var/www/html/apps/app_api/lib/Settings/Admin.php","line":46,"function":"ping","class":"OCA\\AppAPI\\DeployActions\\DockerActions","type":"->","args":["http://nextcloud-aio-harp:8780/exapps/app_api"]},{"file":"/var/www/html/apps/settings/lib/Controller/CommonSettingsTrait.php","line":129,"function":"getForm","class":"OCA\\AppAPI\\Settings\\Admin","type":"->","args":[]},{"file":"/var/www/html/apps/settings/lib/Controller/CommonSettingsTrait.php","line":179,"function":"formatSettings","class":"OCA\\Settings\\Controller\\AdminSettingsController","type":"->","args":[[{"__class__":"OCA\\AppAPI\\Settings\\Admin"}],"*** sensitive parameters replaced ***"]},{"file":"/var/www/html/apps/settings/lib/Controller/AdminSettingsController.php","line":56,"function":"getIndexResponse","class":"OCA\\Settings\\Controller\\AdminSettingsController","type":"->","args":["admin","app_api"]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":205,"function":"index","class":"OCA\\Settings\\Controller\\AdminSettingsController","type":"->","args":["app_api"]},{"file":"/var/www/html/lib/private/AppFramework/Http/Dispatcher.php","line":118,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Settings\\Controller\\AdminSettingsController"},"index"]},{"file":"/var/www/html/lib/private/AppFramework/App.php","line":153,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Settings\\Controller\\AdminSettingsController"},"index"]},{"file":"/var/www/html/lib/private/Route/Router.php","line":321,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Settings\\Controller\\AdminSettingsController","index",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},{"_route":"settings.adminsettings.index","section":"app_api"}]},{"file":"/var/www/html/lib/base.php","line":1155,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/settings/admin/app_api"]},{"file":"/var/www/html/index.php","line":25,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/3rdparty/guzzlehttp/guzzle/src/Exception/RequestException.php","Line":111,"message":"Could not connect to Docker daemon via {url}","exception":"{\"class\":\"GuzzleHttp\\Exception\\ClientException\",\"message\":\"Client error: `GET http://nextcloud-aio-harp:8780/exapps/app_api/v1.44/_ping` resulted in a `404 Not Found` response:\\n404: Not Found\\n\",\"code\":404,\"file\":\"/var/www/html/3rdparty/guzzlehttp/guzzle/src/Exception/RequestException.php:111\",\"trace\":\"#0 /var/www/html/3rdparty/guzzlehttp/guzzle/src/Middleware.php(72): GuzzleHttp\\Exception\\RequestException::create(Object(GuzzleHttp\\Psr7\\Request), Object(GuzzleHttp\\Psr7\\Response), NULL, Array, NULL)\\n#1 /var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php(209): GuzzleHttp\\Middleware::GuzzleHttp\\{closure}(Object(GuzzleHttp\\Psr7\\Response))\\n#2 /var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php(158): GuzzleHttp\\Promise\\Promise::callHandler(1, Object(GuzzleHttp\\Psr7\\Response), NULL)\\n#3 /var/www/html/3rdparty/guzzlehttp/promises/src/TaskQueue.php(52): GuzzleHttp\\Promise\\Promise::GuzzleHttp\\Promise\\{closure}()\\n#4 /var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php(251): GuzzleHttp\\Promise\\TaskQueue->run(true)\\n#5 /var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php(227): GuzzleHttp\\Promise\\Promise->invokeWaitFn()\\n#6 /var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php(272): GuzzleHttp\\Promise\\Promise->waitIfPending()\\n#7 /var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php(229): GuzzleHttp\\Promise\\Promise->invokeWaitList()\\n#8 /var/www/html/3rdparty/guzzlehttp/promises/src/Promise.php(69): GuzzleHttp\\Promise\\Promise->waitIfPending()\\n#9 /var/www/html/3rdparty/guzzlehttp/guzzle/src/Client.php(189): GuzzleHttp\\Promise\\Promise->wait()\\n#10 /var/www/html/3rdparty/guzzlehttp/guzzle/src/ClientTrait.php(44): GuzzleHttp\\Client->request('GET', 'http://nextclou...', Array)\\n#11 /var/www/html/apps/app_api/lib/DeployActions/DockerActions.php(882): GuzzleHttp\\Client->get('http://nextclou...', Array)\\n#12 /var/www/html/apps/app_api/lib/Settings/Admin.php(46): OCA\\AppAPI\\DeployActions\\DockerActions->ping('http://nextclou...')\\n#13 /var/www/html/apps/settings/lib/Controller/CommonSettingsTrait.php(129): OCA\\AppAPI\\Settings\\Admin->getForm()\\n#14 /var/www/html/apps/settings/lib/Controller/CommonSettingsTrait.php(179): OCA\\Settings\\Controller\\AdminSettingsController->formatSettings(Array, Array)\\n#15 /var/www/html/apps/settings/lib/Controller/AdminSettingsController.php(56): OCA\\Settings\\Controller\\AdminSettingsController->getIndexResponse('admin', 'app_api')\\n#16 /var/www/html/lib/private/AppFramework/Http/Dispatcher.php(205): OCA\\Settings\\Controller\\AdminSettingsController->index('app_api')\\n#17 /var/www/html/lib/private/AppFramework/Http/Dispatcher.php(118): OC\\AppFramework\\Http\\Dispatcher->executeController(Object(OCA\\Settings\\Controller\\AdminSettingsController), 'index')\\n#18 /var/www/html/lib/private/AppFramework/App.php(153): OC\\AppFramework\\Http\\Dispatcher->dispatch(Object(OCA\\Settings\\Controller\\AdminSettingsController), 'index')\\n#19 /var/www/html/lib/private/Route/Router.php(321): OC\\AppFramework\\App::main('OCA\\\\Settings\\\\Co...', 'index', Object(OC\\AppFramework\\DependencyInjection\\DIContainer), Array)\\n#20 /var/www/html/lib/base.php(1155): OC\\Route\\Router->match('/settings/admin...')\\n#21 /var/www/html/index.php(25): OC::handleRequest()\\n#22 {main}\"}","CustomMessage":"Could not connect to Docker daemon via http://nextcloud-aio-harp:8780/exapps/app_api/v1.44/_ping"}}
{"reqId":"5Z3nSdmbthwISb19nkrs","level":3,"time":"2026-05-11T13:34:32+00:00","remoteAddr":"192.168.105.99","user":"admin","app":"app_api","method":"GET","url":"/settings/admin/app_api","scriptName":"/index.php","message":"Deploy daemon \"harp_aio\" is not accessible by Nextcloud. Please check its configuration","userAgent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36","version":"33.0.0.16","data":{"app":"app_api"}}
Web Browser
If the problem is related to the Web interface, open your browser inspector Console and Network tabs while refreshing (reloading) and reproducing the problem. Provide any relevant output/errors here that appear.
N/A
Web server / Reverse Proxy
The output of your Apache/nginx/system log in /var/log/____:
I am not shure were to find thes log-files?
Configuration
Nextcloud
The output of occ config:list system or similar is best, but, if not possible, the contents of your config.php file from /path/to/nextcloud is fine (make sure to remove any identifiable information!):
{
"system": {
"one-click-instance": true,
"one-click-instance.user-limit": 100,
"memcache.local": "\\OC\\Memcache\\APCu",
"apps_paths": [
{
"path": "\/var\/www\/html\/apps",
"url": "\/apps",
"writable": false
},
{
"path": "\/var\/www\/html\/custom_apps",
"url": "\/custom_apps",
"writable": true
}
],
"check_data_directory_permissions": false,
"memcache.distributed": "\\OC\\Memcache\\Redis",
"memcache.locking": "\\OC\\Memcache\\Redis",
"redis": {
"host": "***REMOVED SENSITIVE VALUE***",
"password": "***REMOVED SENSITIVE VALUE***",
"port": 6379
},
"overwritehost": "ncloud.collabro.no",
"overwriteprotocol": "https",
"passwordsalt": "***REMOVED SENSITIVE VALUE***",
"secret": "***REMOVED SENSITIVE VALUE***",
"trusted_domains": [
"localhost",
"ncloud.collabro.no"
],
"datadirectory": "***REMOVED SENSITIVE VALUE***",
"dbtype": "pgsql",
"version": "33.0.0.16",
"overwrite.cli.url": "https:\/\/ncloud.collabro.no\/",
"dbname": "***REMOVED SENSITIVE VALUE***",
"dbhost": "***REMOVED SENSITIVE VALUE***",
"dbtableprefix": "oc_",
"dbuser": "***REMOVED SENSITIVE VALUE***",
"dbpassword": "***REMOVED SENSITIVE VALUE***",
"installed": true,
"instanceid": "***REMOVED SENSITIVE VALUE***",
"maintenance": false,
"updatechecker": true,
"updatedirectory": "\/nc-updater",
"loglevel": 2,
"app_install_overwrite": [
"nextcloud-aio",
"maps"
],
"log_type": "file",
"logfile": "\/var\/www\/html\/data\/nextcloud.log",
"log_rotate_size": 10485760,
"log.condition": {
"apps": [
"admin_audit"
]
},
"preview_max_x": 2048,
"preview_max_y": 2048,
"jpeg_quality": 60,
"enabledPreviewProviders": {
"1": "OC\\Preview\\Image",
"2": "OC\\Preview\\MarkDown",
"3": "OC\\Preview\\MP3",
"4": "OC\\Preview\\TXT",
"5": "OC\\Preview\\OpenDocument",
"6": "OC\\Preview\\Movie",
"7": "OC\\Preview\\Krita",
"0": "OC\\Preview\\Imaginary",
"23": "OC\\Preview\\ImaginaryPDF"
},
"enable_previews": true,
"upgrade.disable-web": true,
"mail_smtpmode": "smtp",
"trashbin_retention_obligation": "auto, 30",
"versions_retention_obligation": "auto, 30",
"activity_expire_days": 30,
"simpleSignUpLink.shown": false,
"share_folder": "\/Shared",
"one-click-instance.link": "https:\/\/nextcloud.com\/all-in-one\/",
"upgrade.cli-upgrade-link": "https:\/\/github.com\/nextcloud\/all-in-one\/discussions\/2726",
"maintenance_window_start": 100,
"allow_local_remote_servers": true,
"davstorage.request_timeout": 3600,
"documentation_url.server_logs": "https:\/\/github.com\/nextcloud\/all-in-one\/discussions\/5425",
"htaccess.RewriteBase": "\/",
"dbpersistent": false,
"auth.bruteforce.protection.enabled": true,
"ratelimit.protection.enabled": true,
"files_external_allow_create_new_local": false,
"trusted_proxies": "***REMOVED SENSITIVE VALUE***",
"preview_imaginary_url": "***REMOVED SENSITIVE VALUE***",
"preview_imaginary_key": "***REMOVED SENSITIVE VALUE***",
"mail_smtppassword": "***REMOVED SENSITIVE VALUE***",
"mail_smtpname": "***REMOVED SENSITIVE VALUE***",
"mail_domain": "***REMOVED SENSITIVE VALUE***",
"mail_from_address": "***REMOVED SENSITIVE VALUE***",
"mail_smtphost": "***REMOVED SENSITIVE VALUE***",
"mail_smtpauth": true,
"mail_smtpport": "587",
"mail_sendmailmode": "smtp",
"mail_smtpstreamoptions": {
"ssl": {
"allow_self_signed": false,
"verify_peer": true,
"verify_peer_name": true
}
},
"twofactor_enforced": "true",
"twofactor_enforced_groups": [
"collabro",
"admin"
],
"twofactor_enforced_excluded_groups": [],
"DOMAIN": "ncloud.collabro.no",
"AIO_VERSION": "v12.9.2"
}
}
The output of occ app:list (if possible).
docker exec -u www-data nextcloud-aio-nextcloud ./occ app:list
Enabled:
activity: 6.0.0-dev.0
admin_audit: 1.23.0
app_api: 33.0.0
assistant: 3.4.1
bruteforcesettings: 6.0.0-dev.0
calendar: 6.2.4
circles: 33.0.0
cloud_federation_api: 1.17.0
comments: 1.23.0
contacts: 8.4.5
contactsinteraction: 1.14.1
context_chat: 5.3.1
dashboard: 7.13.0
dav: 1.36.0
deck: 1.17.1
federatedfilesharing: 1.23.0
federation: 1.23.0
files: 2.5.0
files_downloadlimit: 5.1.0-dev.0
files_pdfviewer: 6.0.0-dev.0
files_reminders: 1.6.0
files_sharing: 1.25.2
files_trashbin: 1.23.0
files_versions: 1.26.0
firstrunwizard: 6.0.0-dev.0
groupfolders: 21.0.7
integration_openai: 4.4.0
logreader: 6.0.0
lookup_server_connector: 1.21.0
mail: 5.7.14
nextcloud-aio: 0.8.0
nextcloud_announcements: 5.0.0
notes: 5.0.0
notifications: 6.0.0
notify_push: 1.3.2
oauth2: 1.21.0
password_policy: 5.0.0-dev.0
photos: 6.0.0-dev.0
privacy: 5.0.0-dev.0
profile: 1.2.0
provisioning_api: 1.23.0
recommendations: 6.0.0-dev.0
related_resources: 4.0.0-dev.0
richdocuments: 10.1.3
serverinfo: 5.0.0-dev.0
settings: 1.16.0
sharebymail: 1.23.0
spreed: 23.0.4
support: 5.0.0
survey_client: 5.0.0-dev.0
systemtags: 1.23.0
tasks: 0.17.1
text: 7.0.0-dev.3
theming: 2.8.0
twofactor_backupcodes: 1.22.0
twofactor_nextcloud_notification: 7.0.0
twofactor_totp: 15.0.0-dev.0
updatenotification: 1.23.0
user_status: 1.13.0
viewer: 6.0.0-dev.0
weather_status: 1.13.0
webhook_listeners: 1.5.0
whiteboard: 1.5.7
workflow_pdf_converter: 4.0.0
workflowengine: 2.15.0
Disabled:
encryption: 2.21.0
files_external: 1.25.1
maps: 1.6.0 (installed 1.6.0)
suspicious_login: 11.0.0-dev.0
user_ldap: 1.24.0
Tips for increasing the likelihood of a response
- Use the
preformatted textformatting option in the editor for all log entries and configuration output. - If screenshots are useful, feel free to include them.
- If possible, also include key error output in text form so it can be searched for.
- Try to edit log output only minimally (if at all) so that it can be ran through analyzers / formatters by those trying to help you.