mirror of
https://github.com/caddyserver/caddy.git
synced 2025-02-10 23:40:06 -05:00
18 lines
545 B
Go
18 lines
545 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/caddyhttp/staticresp"
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddytls"
|
|
)
|
|
|
|
func main() {
|
|
caddycmd.Main()
|
|
}
|