ft_transcendence/nginx/conf/locations/auth.conf
2025-09-01 15:47:07 +02:00

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;
}