5 lines
136 B
Text
5 lines
136 B
Text
#forward the post request to the microservice
|
|
location /api/auth/ {
|
|
rewrite ^/api/auth/(.*) $1 break;
|
|
proxy_pass http://auth/$uri;
|
|
}
|