config: remove references to named ports

- Go 1.12.8 changed the way url parse handles service named ports.

Signed-off-by: Bobby DeSimone <bobbydesimone@gmail.com>
This commit is contained in:
Bobby DeSimone 2019-08-14 13:34:48 -07:00
parent b3fa7023f6
commit 1bfb64ed31
No known key found for this signature in database
GPG key ID: AEE4CF12FE86D07E
5 changed files with 17 additions and 15 deletions

View file

@ -4,18 +4,21 @@
### New
- Add ability to set client certificates for downstream connections. [GH-259]
- GRPC Improvements. [#261](https://github.com/pomerium/pomerium/pull/261) and [#69](https://github.com/pomerium/pomerium/issues/69)
- Enable WaitForReady to allow background retries through transient failures
- Expose a configurable timeout for backend requests to Authorize and Authenticate
- Enable DNS round_robin load balancing to Authorize and Authenticate services by default
- Add ability to set client certificates for downstream connections. [GH-259](https://github.com/pomerium/pomerium/pull/259)
### Fixed
### Changed
- A policy's custom certificate authority can set as a file or a base64 encoded blob(`tls_custom_ca`/`tls_custom_ca_file`). [GH-259]
- A policy's custom certificate authority can set as a file or a base64 encoded blob(`tls_custom_ca`/`tls_custom_ca_file`). [GH-259](https://github.com/pomerium/pomerium/pull/259)
- Remove references to [service named ports](https://golang.org/src/net/lookup.go) and instead use their numeric equivalent. [GH-266](https://github.com/pomerium/pomerium/pull/266)
## v0.2.0
@ -172,5 +175,5 @@
- `http.Server` and `httputil.NewSingleHostReverseProxy` now uses pomerium's logging package instead of the standard library's built in one. [GH-58]
[synology tutorial]: ./quick-start/synology.md
[certificates documentation]: ../reference/certificates.md
[synology tutorial]: ./quick-start/synology.md

View file

@ -41,11 +41,11 @@ Service mode sets the pomerium service(s) to run. If testing, you may want to se
- Environmental Variable: `ADDRESS`
- Config File Key: `address`
- Type: `string`
- Example: `:https`, `:443`, `:8443`
- Default: `:https`
- Example: `:443`, `:8443`
- Default: `:443`
- Required
Address specifies the host and port to serve HTTPS and gRPC requests from. If empty, `:https`/`:443` is used.
Address specifies the host and port to serve HTTPS and gRPC requests from. If empty, `:443` is used.
## Administrators
@ -174,7 +174,7 @@ Enable grpc DNS based round robin load balancing. This method uses DNS to resol
- Environmental Variable: `HTTP_REDIRECT_ADDR`
- Config File Key: `http_redirect_addr`
- Type: `string`
- Example: `:80`, `:http`, `:8080`
- Example: `:80`, `:8080`
- Optional
If set, the HTTP Redirect Address specifies the host and port to redirect http to https traffic on. If unset, no redirect server is started.