Skip to content

Commit

Permalink
Switch Auth to Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
gbervik committed Feb 17, 2024
1 parent 23d7d0f commit f4a423d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ http {
proxy_set_header X-Forwarded-For $remote_addr;

location /auth {
resolver 127.0.0.11 valid=30s ipv6=off;
set $link host.docker.internal;
proxy_pass http://$link:8888$request_uri;
resolver 127.0.0.11 valid=30s;
set $link api_auth;
proxy_pass http://$link:8080$request_uri;
}

location /awards {
Expand Down

0 comments on commit f4a423d

Please sign in to comment.