summaryrefslogtreecommitdiff
path: root/admin.go
diff options
context:
space:
mode:
Diffstat (limited to 'admin.go')
-rw-r--r--admin.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/admin.go b/admin.go
index 11be4f2..f3337b0 100644
--- a/admin.go
+++ b/admin.go
@@ -44,7 +44,7 @@ type AdminConfig struct {
// DefaultAdminConfig is the default configuration
// for the administration endpoint.
var DefaultAdminConfig = &AdminConfig{
- Listen: "localhost:2019",
+ Listen: DefaultAdminListen,
}
// StartAdmin starts Caddy's administration endpoint,
@@ -192,6 +192,10 @@ func Load(r io.Reader) error {
return nil
}
+// DefaultAdminListen is the address for the admin
+// listener, if none is specified at startup.
+var DefaultAdminListen = "localhost:2019"
+
var bufPool = sync.Pool{
New: func() interface{} {
return new(bytes.Buffer)