ProxyPass e ProxyPassReverse condicionais do Apache com base no Cookie

1

Estou tentando definir dinamicamente os parâmetros ProxyPass e ProxyPassReverse no arquivo httpd.conf com base em um cookie existente na solicitação, mas não estou tendo sorte em criar uma solução. Aqui está o pseudo-código:

<Location "/solutions/">
  if cookie exists
    #The beta cookie exists, so route the solutions request to the new internal endpoint
    ProxyPass http://localhost:8080/vaadin/
    ProxyPassReverse http://localhost:8080/vaadin/

    #Make any cookies written from the vaadin endpoint to have the path /solutions
    ProxyPassReverseCookiePath  "/"  "/solutions"
  else
    #The beta cookie doesn't exist, so route the solutions request to its normal/old internal endpoint.
    ProxyPass http://localhost:8080/solutions/
    ProxyPassReverse http://localhost:8080/solutions/
</Location>

#What I have currently is:
<Location "/solutions/">
    #Check for cookie 'uiBeta' and it's value being true
    RewriteCond %{HTTP_COOKIE} uiBeta=([^;]+)
    RewriteCond %1 ^true$
    #My RewriteRule replaces the ProxyPass as it supports a conditional
    RewriteRule ^/(.*) http://localhost:8080/vaadin/ [P,L]

    #How do I write the ProxyPassReverse and ProxyPassReverseCookiePath in this situation? 
<Location> 
    
por D. Nelson 28.08.2018 / 22:02

0 respostas

Tags