2019-03-26 19:00:54 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-05-04 21:21:20 +02:00
|
|
|
caddycmd "bitbucket.org/lightcodelabs/caddy2/cmd"
|
2019-04-03 17:47:27 +02:00
|
|
|
|
2019-03-26 19:00:54 +01:00
|
|
|
// this is where modules get plugged in
|
2019-04-03 17:47:27 +02:00
|
|
|
|
2019-03-26 19:00:54 +01:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp"
|
2019-04-01 04:41:29 +02:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/caddylog"
|
2019-05-04 21:21:20 +02:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/reverseproxy"
|
2019-04-01 04:41:29 +02:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddyhttp/staticfiles"
|
2019-04-25 21:54:48 +02:00
|
|
|
_ "bitbucket.org/lightcodelabs/caddy2/modules/caddytls"
|
2019-03-26 19:00:54 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2019-05-04 21:21:20 +02:00
|
|
|
caddycmd.Main()
|
2019-03-26 19:00:54 +01:00
|
|
|
}
|