2019-03-26 21:00:54 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-05-04 22:21:20 +03:00
|
|
|
caddycmd "bitbucket.org/lightcodelabs/caddy2/cmd"
|
2019-04-03 18:47:27 +03:00
|
|
|
|
2019-03-26 21:00:54 +03:00
|
|
|
// this is where modules get plugged in
|
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp"
|
2019-04-01 05:41:29 +03:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/caddylog"
|
2019-05-21 06:21:33 +03:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/fileserver"
|
2019-05-21 00:46:47 +03:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/headers"
|
2019-05-23 23:41:43 +03:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/markdown"
|
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/requestbody"
|
2019-05-04 22:21:20 +03:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/reverseproxy"
|
2019-05-21 08:48:43 +03:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/rewrite"
|
2019-04-25 22:54:48 +03:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddytls"
|
2019-03-26 21:00:54 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-05-04 22:21:20 +03:00
|
|
|
caddycmd.Main()
|
2019-03-26 21:00:54 +03:00
|
|
|
}
|