File tree Expand file tree Collapse file tree 4 files changed +114
-26
lines changed Expand file tree Collapse file tree 4 files changed +114
-26
lines changed Original file line number Diff line number Diff line change 13
13
level info
14
14
}
15
15
16
+ handle /.well-known/jwks.json {
17
+ rewrite * /api/v1/auth/.well-known/jwks.json
18
+ reverse_proxy api:{$API_PORT}
19
+ }
20
+
21
+ handle /.well-known/oauth-authorization-server {
22
+ rewrite * /api/v1/auth/.well-known/oauth-authorization-server
23
+ reverse_proxy api:{$API_PORT}
24
+ }
25
+
16
26
handle /api/* {
17
27
reverse_proxy api:{$API_PORT}
18
28
}
Original file line number Diff line number Diff line change @@ -13,6 +13,16 @@ localhost:80 {
13
13
level info
14
14
}
15
15
16
+ handle /.well-known/jwks.json {
17
+ rewrite * /api/v1/auth/.well-known/jwks.json
18
+ reverse_proxy http://host.docker.internal:1993
19
+ }
20
+
21
+ handle /.well-known/oauth-authorization-server {
22
+ rewrite * /api/v1/auth/.well-known/oauth-authorization-server
23
+ reverse_proxy http://host.docker.internal:1993
24
+ }
25
+
16
26
handle /api/* {
17
27
reverse_proxy http://host.docker.internal:1993
18
28
}
You can’t perform that action at this time.
0 commit comments