1 Answer
- Newest
- Most votes
- Most comments
1
I found the error, I must to have in nginx
server { listen 80;
location /health {
access_log off;
return 200 'ok';
add_header Content-Type text/plain;
}
# Configuración adicional de tu servidor aquí
}
And update the PAth in my target groups "/health"
Working perfect now
answered 2 years ago
