appd

package module
v1.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 28, 2024 License: Apache-2.0 Imports: 7 Imported by: 0

README

caddy-appd

Service Management App for Caddy v2.

Please ask questions either here or via LinkedIn. I am happy to help you! @greenpau

Please see other plugins:

Table of Contents

Overview

The caddy-appd is a Caddy app that starts and stops non-Caddy applications.

The primary use case is enabling starting the applications proxied by caddy at startup. This way, there is no need to orchestrate the starting of services prior to the starting of caddy itself.

Getting Started

For example, the following configuration starts up webapp1 in /usr/local/www/webapp directory. The app is listening on port 8080. When requests arrive for webapp1.myfiosgateway.com, they are being proxied to webapp1.

{
  appd {
    app webapp1 {
      workdir /usr/local/www/webapp
      cmd /usr/local/bin/webapp
      args foo bar --foo=bar --port=8080
    }
  }
}

webapp1.myfiosgateway.com {
  route {
    reverse_proxy localhost:8080
  }
}

There is a sample config in assets/config/Caddyfile.

Test its configuration:

curl https://localhost:8443/version
curl https://localhost:8443/pytest/foo

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type App

type App struct {
	Name   string           `json:"-"`
	Config *services.Config `json:"config,omitempty"`
	// contains filtered or unexported fields
}

App implements systemd-like service manager.

func (App) CaddyModule

func (App) CaddyModule() caddy.ModuleInfo

CaddyModule returns the Caddy module information.

func (*App) Provision

func (app *App) Provision(ctx caddy.Context) error

Provision sets up the service manager.

func (App) Start

func (app App) Start() error

Start starts the service manager and associated services.

func (App) Stop

func (app App) Stop() error

Stop stops the service manager and associated services.

Directories

Path Synopsis
cmd
pkg

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL