2019-03-26 12:00:54 -06:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-05-04 13:21:20 -06:00
|
|
|
caddycmd "bitbucket.org/lightcodelabs/caddy2/cmd"
|
2019-04-03 11:47:27 -04:00
|
|
|
|
2019-03-26 12:00:54 -06:00
|
|
|
// this is where modules get plugged in
|
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp"
|
2019-03-31 20:41:29 -06:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/caddylog"
|
2019-05-20 15:46:47 -06:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/headers"
|
2019-05-04 13:21:20 -06:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/reverseproxy"
|
2019-03-31 20:41:29 -06:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/staticfiles"
|
2019-04-25 13:54:48 -06:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddytls"
|
2019-03-26 12:00:54 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-05-04 13:21:20 -06:00
|
|
|
caddycmd.Main()
|
2019-03-26 12:00:54 -06:00
|
|
|
}
|