diff --git a/ansible/roles/stack-proxy/templates/proxy-default.conf b/ansible/roles/stack-proxy/templates/proxy-default.conf
index bf750cedfe89556d30b87371ba2c675e0b372bcc..c489c283da8f7a323d7ad53c5c164a02a5547027 100644
--- a/ansible/roles/stack-proxy/templates/proxy-default.conf
+++ b/ansible/roles/stack-proxy/templates/proxy-default.conf
@@ -49,8 +49,18 @@ server {
   location ~* ^/auth/realms/(.+)/clients-registrations/ {
     return 301 {{proto}}://$host/api/auth/v1/realms/$1/clients-registrations/;
   }
+
   location ~* ^/auth/v1/refresh/token  {
-    return 301 {{proto}}://{{ proxy_server_name }};
+    set $target http://player:3000;
+    rewrite ^/auth/(.*) /auth/$1 break;
+    proxy_pass $target;
+    
+    proxy_set_header Host $host;
+    proxy_set_header X-Real-IP $remote_addr;
+    proxy_set_header X-Scheme $scheme;
+    proxy_set_header X-Forwarded-For   $proxy_add_x_forwarded_for;
+    proxy_set_header X-Forwarded-Proto $scheme;
+
   }
  
   location ~* ^/auth/admin/master/console/ {