mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-02 14:17:01 +01:00
e40bbecb16
Also added GracePeriod for server shutdowns
17 lines
476 B
Go
17 lines
476 B
Go
package main
|
|
|
|
import (
|
|
caddycmd "bitbucket.org/lightcodelabs/caddy2/cmd"
|
|
|
|
// this is where modules get plugged in
|
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp"
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/caddylog"
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/reverseproxy"
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/staticfiles"
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddytls"
|
|
)
|
|
|
|
func main() {
|
|
caddycmd.Main()
|
|
}
|