mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-30 04:33:48 +08:00
5a19db5dc2
* pki: Initial commit of PKI app (WIP) (see #2502 and #3021) * pki: Ability to use root/intermediates, and sign with root * pki: Fix benign misnamings left over from copy+paste * pki: Only install root if not already trusted * Make HTTPS port the default; all names use auto-HTTPS; bug fixes * Fix build - what happened to our CI tests?? * Fix go.mod
16 lines
644 B
Go
16 lines
644 B
Go
package standard
|
|
|
|
import (
|
|
// standard Caddy modules
|
|
_ "github.com/caddyserver/caddy/v2/caddyconfig/caddyfile"
|
|
_ "github.com/caddyserver/caddy/v2/caddyconfig/json5"
|
|
_ "github.com/caddyserver/caddy/v2/caddyconfig/jsonc"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddyhttp/standard"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddypki"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddytls"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddytls/distributedstek"
|
|
_ "github.com/caddyserver/caddy/v2/modules/caddytls/standardstek"
|
|
_ "github.com/caddyserver/caddy/v2/modules/filestorage"
|
|
_ "github.com/caddyserver/caddy/v2/modules/logging"
|
|
)
|