Como obter o nome do servidor que atendeu a solicitação na seção fronteada?

5

Eu preciso adicionar o nome do servidor nos cabeçalhos HTTP de resposta X-Servedby. Existe alguma maneira de substituir [servidor] com o nome do servidor que atendeu a solicitação?

frontend front x.x.x.x:80
  default_backend balancing
  rspadd X-Servedby:\ [server] #I need to replace [server]

backend balancing
  server srv1 x.x.x.x:80 check
  server srv2 x.x.x.x:80 check
    
por Kirzilla 03.07.2014 / 17:31

2 respostas

6

Para conseguir isso, altere a estância frontend para o seguinte:

frontend front x.x.x.x:80
    default_backend balancing
    acl srv1 srv_id 1
    acl srv2 srv_id 2
    rspadd X-Servedby:\ srv1 if srv1
    rspadd X-Servedby:\ srv2 if srv2

No entanto, uma alternativa melhor de dimensionamento seria usar cookie na sub-rotina backend :

backend balancing
    cookie SRVNAME insert
    server srv1 x.x.x.x:80 cookie srv1 check
    server srv2 x.x.x.x:80 cookie srv2 check

Espero que isso ajude!

    
por 03.07.2014 / 17:39
2

Devemos usar srv_id , que fornece o valor id definido para server

frontend front x.x.x.x:80

  acl serve_us1 url_beg /west
  acl serve_us2 url_beg /east

  #defining acl for srv_id
  acl served_by_us1 srv_id 1  #look at srv_id
  acl served_by_us2 srv_id 2  #look at srv_id

  use_backend us1 if serve_us1
  use_backend us2 if serve_us2 
  default_backend balancing

  rspadd X-ServedBy:\ us1 if served_by_us1
  rspadd X-ServedBy:\ us2 if served_by_us2

backend us1
  server srv1 1.1.1.1:80 check id 1 #look at id

backend us2
  server srv2 2.2.2.2:80 check id 2 #look at id

backend balancing
  server srv1 1.1.1.1:80 check id 1 #look at id
  server srv2 2.2.2.2:80 check id 2 #look at id
    
por 03.07.2014 / 18:05