-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! feat(DEV-10495): add image build task
- Loading branch information
Showing
5 changed files
with
55 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
auto_https disable_redirects | ||
} | ||
|
||
{$CLERK_APP_DOMAIN} { | ||
reverse_proxy web:3000 | ||
|
||
handle_path /__clerk/* { | ||
uri strip_prefix /__clerk | ||
reverse_proxy https://frontend-api.clerk.dev { | ||
header_up Clerk-Proxy-Url https://{$CLERK_APP_DOMAIN}/__clerk | ||
header_up Clerk-Secret-Key {$CLERK_SECRET_KEY} | ||
header_up X-Forwarded-For {remote_host} | ||
} | ||
} | ||
|
||
log { | ||
output file /var/log/caddy/access.log | ||
format console | ||
} | ||
|
||
tls { | ||
on_demand | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters