Documentation ¶
Overview ¶
Package caddy provides a handler for Caddy Server (https://caddyserver.com/) allowing to transform any Caddy instance into a Mercure hub.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Mercure ¶
type Mercure struct { // Allow subscribers with no valid JWT. Anonymous bool `json:"anonymous,omitempty"` // Dispatch updates when subscriptions are created or terminated Subscriptions bool `json:"subscriptions,omitempty"` // Enable the demo. Demo string `json:"demo,omitempty"` // Maximum duration before closing the connection, defaults to 600s, set to 0 to disable. WriteTimeout *caddy.Duration `json:"write_timeout,omitempty"` // Maximum dispatch duration of an update. DispatchTimeout caddy.Duration `json:"dispatch_timeout,omitempty"` // Frequency of the heartbeat, defaults to 40s. Heartbeat caddy.Duration `json:"heartbeat,omitempty"` // JWT key and signing algorithm to use for publishers. PublisherJWT JWTConfig `json:"publisher_jwt,omitempty"` // JWT key and signing algorithm to use for subscribers. SubscriberJWT JWTConfig `json:"subscriber_jwt,omitempty"` // Origins allowed to publish updates PublishOrigins []string `json:"publish_origins,omitempty"` // Allowed CORS origins. CORSOrigins []string `json:"cors_origins,omitempty"` // Transport to use. TransportURL string `json:"transport_url,omitempty"` // Number of cache counters, defaults to 6e7, set to -1 to disable the cache. See https://github.com/dgraph-io/ristretto for details. CacheNumCounters *int64 `json:"cache_max_counters,omitempty"` // Maximum cache cost, defaults to 100MB, set to -1 to disable the cache. See https://github.com/dgraph-io/ristretto for details. CacheMaxCost *int64 `json:"cache_max_cost,omitempty"` // contains filtered or unexported fields }
Mercure implements a Mercure hub as a Caddy module. Mercure is a protocol allowing to push data updates to web browsers and other HTTP clients in a convenient, fast, reliable and battery-efficient way.
func (Mercure) CaddyModule ¶
func (Mercure) CaddyModule() caddy.ModuleInfo
CaddyModule returns the Caddy module information.
Click to show internal directories.
Click to hide internal directories.