404 page not found after server update

OpenRPA version:
OpenFlow version: 1.5.12.46
Using app.openiap.io or self hosted openflow: self hosted
Error message: 404 page not found
Issue occured after updating the server with latest updates.
Tested on another docker instance and i have the same issue.

This is all the logging i have from tha openflow-api docker container: [server][INF] Client connected, client count 1
[client][INF] Connected to server localhost
Core-Web version 0.1.2.23 git commit c9bbab1 Connected to open-core version 1.5.12.46
Init core-web version 0.1.2.23 git commit c9bbab1
[server][INF] Client connected, client count 2
[server][INF] Client connected, client count 3
[server][INF] Client connected, client count 4
Error while calling “getconf CLK_TCK” Error: spawn /bin/sh ENOENT
at ChildProcess._handle.onexit (node:internal/child_process:285:19)
at onErrorNT (node:internal/child_process:483:16)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {

errno: -2,
code: ‘ENOENT’,
syscall: ‘spawn /bin/sh’,
path: ‘/bin/sh’,
spawnargs: [ ‘-c’, ‘getconf CLK_TCK’ ],
cmd: ‘getconf CLK_TCK’
}
Error while calling “getconf PAGESIZE” Error: spawn /bin/sh ENOENT
at ChildProcess._handle.onexit (node:internal/child_process:285:19)
at onErrorNT (node:internal/child_process:483:16)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {

errno: -2,
code: ‘ENOENT’,
syscall: ‘spawn /bin/sh’,
path: ‘/bin/sh’,
spawnargs: [ ‘-c’, ‘getconf PAGESIZE’ ],
cmd: ‘getconf PAGESIZE’
}

The logs you sent show clients connecting. The first is usually the website itself, but if you’re getting 404 through Traefik I don’t have a good guess on what the rest are.

If the website itself were broken, then /config should still return a result. I know your URL so I just tested it, and I also get a 404 on that endpoint. The 404 responses are also missing the common Node.js headers, so everything points to Traefik being the one with the issue.

Please check the Traefik logs. Restart it first so you get fresh eyes on any errors.

The solution was to update traefik, i updated to v2.11.50 from v2.10.6, thank you!