File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed
support/oidc-discovery-provider Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -91,13 +91,13 @@ will terminate if another domain is requested.
91
91
92
92
#### Serving Certificate Section
93
93
94
- | Key | Type | Required? | Description | Default |
95
- | ----------------------| ----------| -----------| --------------------------------------------------------------------| ------------ |
96
- | ` cert_file_path ` | string | required | The certificate file path, the file must contain PEM encoded data. | |
97
- | ` key_file_path ` | string | required | The private key file path, the file must contain PEM encoded data. | |
98
- | ` file_sync_interval ` | duration | optional | Controls how frequently the service polls the files for changes. | 1 minute |
99
- | ` file_sync_interval ` | duration | optional | Controls how frequently the service polls the files for changes. | 1 minute |
100
- | ` addr ` | string | optional | Exposes the service on the given address. | :433 |
94
+ | Key | Type | Required? | Description | Default |
95
+ | ----------------------| ----------| -----------| --------------------------------------------------------------------| ----------|
96
+ | ` cert_file_path ` | string | required | The certificate file path, the file must contain PEM encoded data. | |
97
+ | ` key_file_path ` | string | required | The private key file path, the file must contain PEM encoded data. | |
98
+ | ` file_sync_interval ` | duration | optional | Controls how frequently the service polls the files for changes. | 1 minute |
99
+ | ` file_sync_interval ` | duration | optional | Controls how frequently the service polls the files for changes. | 1 minute |
100
+ | ` addr ` | string | optional | Exposes the service on the given address. | :443 |
101
101
102
102
#### Server API Section
103
103
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const (
17
17
defaultHealthChecksBindPort = 8008
18
18
defaultHealthChecksReadyPath = "/ready"
19
19
defaultHealthChecksLivePath = "/live"
20
- defaultAddr = ":433 "
20
+ defaultAddr = ":443 "
21
21
)
22
22
23
23
type Config struct {
@@ -84,7 +84,7 @@ type ServingCertFileConfig struct {
84
84
// KeyFilePath is the path to the private key file. The provider will watch
85
85
// this file for changes and reload the key when it changes.
86
86
KeyFilePath string `hcl:"key_file_path"`
87
- // Addr is the address to listen on. This is optional and defaults to ":433 ".
87
+ // Addr is the address to listen on. This is optional and defaults to ":443 ".
88
88
Addr * net.TCPAddr `hcl:"-"`
89
89
// RawAddr holds the string version of the Addr. Consumers should use Addr instead.
90
90
RawAddr string `hcl:"addr"`
Original file line number Diff line number Diff line change @@ -130,9 +130,9 @@ func parseConfigCasesOS() []parseConfigCase {
130
130
FileSyncInterval : time .Minute ,
131
131
Addr : & net.TCPAddr {
132
132
IP : nil ,
133
- Port : 433 ,
133
+ Port : 443 ,
134
134
},
135
- RawAddr : ":433 " ,
135
+ RawAddr : ":443 " ,
136
136
},
137
137
ServerAPI : & ServerAPIConfig {
138
138
Address : "unix:///some/socket/path" ,
Original file line number Diff line number Diff line change @@ -148,9 +148,9 @@ func parseConfigCasesOS() []parseConfigCase {
148
148
FileSyncInterval : time .Minute ,
149
149
Addr : & net.TCPAddr {
150
150
IP : nil ,
151
- Port : 433 ,
151
+ Port : 443 ,
152
152
},
153
- RawAddr : ":433 " ,
153
+ RawAddr : ":443 " ,
154
154
},
155
155
ServerAPI : & ServerAPIConfig {
156
156
Experimental : experimentalServerAPIConfig {
You can’t perform that action at this time.
0 commit comments