Dagger
Search

caddy

No long description provided.

Installation

dagger install github.com/rajatjindal/daggerverse/proxy@b778907d5c7fe4abf78de84d0c00e390b38c205f

Entrypoint

Return Type
Caddy !
Example
func (m *myModule) example() *Caddy  {
	return dag.
			Caddy()
}

Types

Caddy 🔗

services() 🔗

Return Type
[ServiceConfig ! ] !
Example
func (m *myModule) example() []*CaddyServiceConfig  {
	return dag.
			Caddy().
			Services()
}

withService() 🔗

Return Type
Caddy !
Arguments
NameTypeDefault ValueDescription
upstreamServiceService !-No description provided
upstreamNameString !-No description provided
upstreamPortInteger !-No description provided
Example
func (m *myModule) example(upstreamService *Service, upstreamName string, upstreamPort int) *Caddy  {
	return dag.
			Caddy().
			WithService(upstreamService, upstreamName, upstreamPort)
}

getCaddyFile() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context) string  {
	return dag.
			Caddy().
			GetCaddyFile(ctx)
}

container() 🔗

Return Type
Container !
Example
func (m *myModule) example() *Container  {
	return dag.
			Caddy().
			Container()
}

serve() 🔗

Return Type
Service !
Example
func (m *myModule) example() *Service  {
	return dag.
			Caddy().
			Serve()
}

ServiceConfig 🔗

upstreamName() 🔗

Return Type
String !
Example
Function CaddyServiceConfig.upstreamName is not accessible from the caddy module

upstreamPort() 🔗

Return Type
Integer !
Example
Function CaddyServiceConfig.upstreamPort is not accessible from the caddy module

upstreamSvc() 🔗

Return Type
Service !
Example
Function CaddyServiceConfig.upstreamSvc is not accessible from the caddy module