Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devservices/proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ proxy:
url: http://host.docker.internal:8000
routes:
- match:
path: /organizations/{organization}/*
path: /api/0/organizations/{organization}/*
action:
resolver: cell_from_organization
cell_to_upstream:
Expand Down
4 changes: 2 additions & 2 deletions example_config_proxy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ proxy:
routes:
- match:
host: us.sentry.io
path: /organizations/{organization}/*
path: /api/0/organizations/{organization}/*
action:
resolver: cell_from_organization
cell_to_upstream:
Expand All @@ -46,7 +46,7 @@ proxy:
default: us1-getsentry
- match:
host: us.sentry.io
path: /cell/{cell_id}/*
path: /api/0/cell/{cell_id}/*
action:
resolver: cell_from_id
cell_to_upstream:
Expand Down
2 changes: 1 addition & 1 deletion proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Routes are matched top down in the order they are defined. For each incoming req
```yaml
- match:
host: us.sentry.io # matches us.sentry.io only
path: /organizations/{organization_id_or_slug}/* # with {organization_id_or_slug} dynamic segment and trailing wildcard
path: /api/0/organizations/{organization_id_or_slug}/* # with {organization_id_or_slug} dynamic segment and trailing wildcard
```

### Route actions
Expand Down
Loading