fix: route /oauth/* and /.well-known/* to appview in prod Caddyfile
Author: Aaron Steven White
Commit
d65077d1ee1e51b80c221c07f865928ed15dcf4dParent: 9820a9f910
Structural diff unavailable
These commits were pushed via plain git push, so no pre-parsed
schemas are available. Install git-remote-cospan and re-push via panproto:// to
see scope-level changes, breaking change detection, and semantic diffs.
brew install panproto/tap/git-remote-cospan1 file changed +12 -2
@@ -1,9 +1,19 @@
11 {$DOMAIN:cospan.dev} { 2- reverse_proxy web:3000 3- 2+ # AppView: XRPC, OAuth, JWKS 43 handle /xrpc/* { 54 reverse_proxy appview:3000 65 } 6+ handle /oauth/* { 7+ reverse_proxy appview:3000 8+ } 9+ handle /.well-known/jwks.json { 10+ reverse_proxy appview:3000 11+ } 12+ 13+ # Frontend: everything else 14+ handle { 15+ reverse_proxy web:3000 16+ } 717 } 818 919 node.{$DOMAIN:cospan.dev} {