mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-30 02:46:30 +02:00
proxy: fix internal service url (#163)
This commit is contained in:
parent
bade9f50e6
commit
4ce4e1e124
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ func New(opts *config.Options) (*Proxy, error) {
|
||||||
p.AuthenticateClient, err = clients.NewAuthenticateClient("grpc",
|
p.AuthenticateClient, err = clients.NewAuthenticateClient("grpc",
|
||||||
&clients.Options{
|
&clients.Options{
|
||||||
Addr: opts.AuthenticateURL.Host,
|
Addr: opts.AuthenticateURL.Host,
|
||||||
InternalAddr: opts.AuthenticateInternalAddr.String(),
|
InternalAddr: opts.AuthenticateInternalAddr.Host,
|
||||||
OverrideCertificateName: opts.OverrideCertificateName,
|
OverrideCertificateName: opts.OverrideCertificateName,
|
||||||
SharedSecret: opts.SharedKey,
|
SharedSecret: opts.SharedKey,
|
||||||
CA: opts.CA,
|
CA: opts.CA,
|
||||||
|
|
Loading…
Add table
Reference in a new issue