Browse Source
caddyhttp: Print actual listener address in log message (closes #2992)
Needed if port is 0, thus chosen by OS
master
Matthew Holt
6 years ago
No known key found for this signature in database
GPG Key ID: 2A349DD577D586A5
1 changed files with
10 additions and
1 deletions
-
modules/caddyhttp/app.go
|
|
@ -345,8 +345,17 @@ func (app *App) Start() error { |
|
|
|
ln = srv.listenerWrappers[i].WrapListener(ln) |
|
|
|
} |
|
|
|
|
|
|
|
// if binding to port 0, the OS chooses a port for us;
|
|
|
|
// but the user won't know the port unless we print it
|
|
|
|
if listenAddr.StartPort == 0 && listenAddr.EndPort == 0 { |
|
|
|
app.logger.Info("port 0 listener", |
|
|
|
zap.String("input_address", lnAddr), |
|
|
|
zap.String("actual_address", ln.Addr().String()), |
|
|
|
) |
|
|
|
} |
|
|
|
|
|
|
|
app.logger.Debug("starting server loop", |
|
|
|
zap.String("address", lnAddr), |
|
|
|
zap.String("address", ln.Addr().String()), |
|
|
|
zap.Bool("http3", srv.ExperimentalHTTP3), |
|
|
|
zap.Bool("tls", useTLS), |
|
|
|
) |
|
|
|