mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
9 lines
248 B
Go
9 lines
248 B
Go
package api
|
|
|
|
// CaddySpec is the Caddy reverse proxy configuration for a service.
|
|
type CaddySpec struct {
|
|
// Config contains the Caddy config (Caddyfile) content. It must not conflict with the Caddy configs
|
|
// of other services.
|
|
Config string
|
|
}
|