Skip to content

Commit

Permalink
Isssue #00 fix: updating svc name for oauth
Browse files Browse the repository at this point in the history
  • Loading branch information
harshavardhanc committed Jun 29, 2020
1 parent e6c2d7f commit c5f494d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kubernetes/helm_charts/core/nginx-public-ingress/values.j2
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ proxyconfig: |
proxy_set_header X-Real-IP {{ nginx_client_public_ip_header | d('$remote_addr') }};
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Auth-Request-Redirect $request_uri;
proxy_pass http://oauth2-proxy.logging.svc.cluster.local;
proxy_pass http://oauth2-proxy-service.logging.svc.cluster.local;
}
location = /oauth2/auth {
proxy_set_header Host $host;
Expand All @@ -269,7 +269,7 @@ proxyconfig: |
# nginx auth_request includes headers but not body
proxy_set_header Content-Length "";
proxy_pass_request_body off;
proxy_pass http://oauth2-proxy.logging.svc.cluster.local;
proxy_pass http://oauth2-proxy-service.logging.svc.cluster.local;
}
location /dashboard/ {
auth_request /oauth2/auth;
Expand Down

0 comments on commit c5f494d

Please sign in to comment.