Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: use the new RegisterDirectiveOrder to simplify config #909

Merged
merged 1 commit into from
May 31, 2024
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: 0 additions & 2 deletions Caddyfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Learn how to configure the Mercure.rocks Hub on https://mercure.rocks/docs/hub/config
{
order mercure after encode

{$GLOBAL_OPTIONS}
}

Expand Down
2 changes: 0 additions & 2 deletions Caddyfile.dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Learn how to configure the Mercure.rocks Hub on https://mercure.rocks/docs/hub/config
{
order mercure after encode

{$GLOBAL_OPTIONS}
}

Expand Down
1 change: 1 addition & 0 deletions caddy/caddy.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ var (
func init() { //nolint:gochecknoinits
caddy.RegisterModule(Mercure{})
httpcaddyfile.RegisterHandlerDirective("mercure", parseCaddyfile)
httpcaddyfile.RegisterDirectiveOrder("mercure", "after", "encode")
}

type JWTConfig struct {
Expand Down
Loading