diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-09 12:45:40 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-11 21:21:38 -0600 |
| commit | 339bf1e9d493fe315116746e2574eace410fb70d (patch) | |
| tree | e0bf356497a5fa2b4051c63fea188659e2a1ca16 | |
| parent | 23e3665b1f54e20e0e58f5fa77d786880b68b02e (diff) | |
chore: provide pass through for specific endpoints
| -rw-r--r-- | envoy.yml | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -63,9 +63,23 @@ static_resources: forward_bearer_token: true pass_through_matcher: - name: ":path" - prefix_match: "/public/" + suffix_match: ".html" + - name: ":path" + suffix_match: ".ico" + - name: ":path" + suffix_match: ".png" + - name: ":path" + suffix_match: ".css" + - name: ":path" + suffix_match: ".js" - name: ":path" exact_match: "/health" + - name: ":path" + exact_match: "/" + - name: ":path" + exact_match: "/sparkles" + - name: ":path" + exact_match: "/dashboard/nav" redirect_path_matcher: path: exact: /session/callback |
