diff --git a/configuration/configuration.go b/configuration/configuration.go index 68b02a410..95fad34e4 100644 --- a/configuration/configuration.go +++ b/configuration/configuration.go @@ -123,6 +123,13 @@ type Configuration struct { // Addr specifies the bind address for the debug server. Addr string `yaml:"addr,omitempty"` } `yaml:"debug,omitempty"` + + // HTTP2 configuration options + HTTP2 struct { + // Specifies wether the registry should disallow clients attempting + // to connect via http2. If set to true, only http/1.1 is supported. + Disabled bool `yaml:"disabled,omitempty"` + } `yaml:"http2,omitempty"` } `yaml:"http,omitempty"` // Notifications specifies configuration about various endpoint to which diff --git a/configuration/configuration_test.go b/configuration/configuration_test.go index 86f048ad9..1768894e6 100644 --- a/configuration/configuration_test.go +++ b/configuration/configuration_test.go @@ -82,6 +82,9 @@ var configStruct = Configuration{ Debug struct { Addr string `yaml:"addr,omitempty"` } `yaml:"debug,omitempty"` + HTTP2 struct { + Disabled bool `yaml:"disabled,omitempty"` + } `yaml:"http2,omitempty"` }{ TLS: struct { Certificate string `yaml:"certificate,omitempty"` @@ -97,6 +100,11 @@ var configStruct = Configuration{ Headers: http.Header{ "X-Content-Type-Options": []string{"nosniff"}, }, + HTTP2: struct { + Disabled bool `yaml:"disabled,omitempty"` + }{ + Disabled: false, + }, }, } diff --git a/docs/configuration.md b/docs/configuration.md index cd7703acc..1f82e854d 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -198,6 +198,8 @@ information about each option that appears later in this page. addr: localhost:5001 headers: X-Content-Type-Options: [nosniff] + http2: + disabled: false notifications: endpoints: - name: alistener @@ -910,6 +912,8 @@ configuration may contain both. addr: localhost:5001 headers: X-Content-Type-Options: [nosniff] + http2: + disabled: false The `http` option details the configuration for the HTTP server that hosts the registry. @@ -1112,6 +1116,29 @@ Including `X-Content-Type-Options: [nosniff]` is recommended, so that browsers will not interpret content as HTML if they are directed to load a page from the registry. This header is included in the example configuration files. +### http2 + +The `http2` struct within `http` is **optional**. Use this to control http2 +settings for the registry. + +
Parameter | +Required | +Description | +
---|---|---|
+ disabled
+ |
+ + no + | ++ A boolean that determines if http2 support should be disabled + | +