Merge: + config: add "rlimit_nofile" setting - Maximum number of opened fd's per process
* commit '1f1e26f67b00ee4983c65e4e3aabf59a488f687b': + config: add "rlimit_nofile" setting - Maximum number of opened fd's per process
This commit is contained in:
commit
c8e4f61534
17
app.go
17
app.go
|
@ -95,6 +95,11 @@ func run(args options) {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (runtime.GOOS == "linux" || runtime.GOOS == "darwin") &&
|
||||||
|
config.RlimitNoFile != 0 {
|
||||||
|
setRlimit(config.RlimitNoFile)
|
||||||
|
}
|
||||||
|
|
||||||
// override bind host/port from the console
|
// override bind host/port from the console
|
||||||
if args.bindHost != "" {
|
if args.bindHost != "" {
|
||||||
config.BindHost = args.bindHost
|
config.BindHost = args.bindHost
|
||||||
|
@ -303,6 +308,18 @@ func enableTLS13() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set user-specified limit of how many fd's we can use
|
||||||
|
// https://github.com/AdguardTeam/AdGuardHome/issues/659
|
||||||
|
func setRlimit(val uint) {
|
||||||
|
var rlim syscall.Rlimit
|
||||||
|
rlim.Max = uint64(val)
|
||||||
|
rlim.Cur = uint64(val)
|
||||||
|
err := syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rlim)
|
||||||
|
if err != nil {
|
||||||
|
log.Error("Setrlimit() failed: %v", err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func cleanup() {
|
func cleanup() {
|
||||||
log.Info("Stopping AdGuard Home")
|
log.Info("Stopping AdGuard Home")
|
||||||
|
|
||||||
|
|
12
config.go
12
config.go
|
@ -34,11 +34,13 @@ type configuration struct {
|
||||||
ourWorkingDir string // Location of our directory, used to protect against CWD being somewhere else
|
ourWorkingDir string // Location of our directory, used to protect against CWD being somewhere else
|
||||||
firstRun bool // if set to true, don't run any services except HTTP web inteface, and serve only first-run html
|
firstRun bool // if set to true, don't run any services except HTTP web inteface, and serve only first-run html
|
||||||
|
|
||||||
BindHost string `yaml:"bind_host"` // BindHost is the IP address of the HTTP server to bind to
|
BindHost string `yaml:"bind_host"` // BindHost is the IP address of the HTTP server to bind to
|
||||||
BindPort int `yaml:"bind_port"` // BindPort is the port the HTTP server
|
BindPort int `yaml:"bind_port"` // BindPort is the port the HTTP server
|
||||||
AuthName string `yaml:"auth_name"` // AuthName is the basic auth username
|
AuthName string `yaml:"auth_name"` // AuthName is the basic auth username
|
||||||
AuthPass string `yaml:"auth_pass"` // AuthPass is the basic auth password
|
AuthPass string `yaml:"auth_pass"` // AuthPass is the basic auth password
|
||||||
Language string `yaml:"language"` // two-letter ISO 639-1 language code
|
Language string `yaml:"language"` // two-letter ISO 639-1 language code
|
||||||
|
RlimitNoFile uint `yaml:"rlimit_nofile"` // Maximum number of opened fd's per process (0: default)
|
||||||
|
|
||||||
DNS dnsConfig `yaml:"dns"`
|
DNS dnsConfig `yaml:"dns"`
|
||||||
TLS tlsConfig `yaml:"tls"`
|
TLS tlsConfig `yaml:"tls"`
|
||||||
Filters []filter `yaml:"filters"`
|
Filters []filter `yaml:"filters"`
|
||||||
|
|
Loading…
Reference in New Issue