mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 16:07:10 +00:00
10 lines
372 B
Go
10 lines
372 B
Go
|
|
package server
|
||
|
|
|
||
|
|
// Config holds the configuration for http.
|
||
|
|
type Config struct {
|
||
|
|
//Address specifies the TCP address for the server to listen on, in the form "host:port".
|
||
|
|
// If empty, ":http" (port 80) is used. The service names are defined in RFC 6335 and assigned by IANA.
|
||
|
|
// See net.Dial for details of the address format.
|
||
|
|
Address string `mapstructure:"address"`
|
||
|
|
}
|