Não complique as coisas. Basta apontar suas verificações de integridade do ELB em um URL especial apenas para elas.
server {
location /elb-status {
access_log off;
return 200;
}
}
Eu tenho o seguinte código que está trabalhando no Nginx para manter o healthbeck da AWS ELB feliz.
map $http_user_agent $ignore {
default 0;
"ELB-HealthChecker/1.0" 1;
}
server {
location / {
if ($ignore) {
access_log off;
return 200;
}
}
}
Eu sei que o 'IF' é melhor evitado com Nginx e eu queria perguntar se alguém saberia como recodificar isso sem o 'se'?
obrigado
Apenas para melhorar a resposta acima, que está correta. O seguinte funciona muito bem:
location /elb-status {
access_log off;
return 200 'A-OK!';
# because default content-type is application/octet-stream,
# browser will offer to "save the file"...
# the next line allows you to see it in the browser so you can test
add_header Content-Type text/plain;
}
Atualização: se a validação do agente do usuário for necessária,
set $block 1;
# Allow only the *.example.com hosts.
if ($host ~* '^[a-z0-9]*\.example\.com$') {
set $block 0;
}
# Allow all the ELB health check agents.
if ($http_user_agent ~* '^ELB-HealthChecker\/.*$') {
set $block 0;
}
if ($block = 1) { # block invalid requests
return 444;
}
# Health check url
location /health {
return 200 'OK';
add_header Content-Type text/plain;
}