We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aecd55 commit 23ba494Copy full SHA for 23ba494
ui/packages/ce/nginx.conf
@@ -22,7 +22,9 @@ server {
22
}
23
24
# API endpoints proxied directly to the DLE server.
25
- location ~ ^/(healthz|status|instance|branch|branches|clone|clones|snapshot|snapshots|observation|admin|full-refresh)(/|$) {
+ # "instance" is intentionally excluded — it collides with the SPA route /instance.
26
+ # The /instance/retrieval and /instance/logs endpoints are reachable via /api/ and /ws/.
27
+ location ~ ^/(healthz|status|branch|branches|clone|clones|snapshot|snapshots|observation|admin|full-refresh)(/|$) {
28
resolver 127.0.0.11;
29
proxy_http_version 1.1;
30
proxy_pass http://${DLE_HOST}:${DLE_PORT}$request_uri;
0 commit comments