httpd.conf (ProxyPass e ProxyPassReverse)

1

Gostaria de perguntar qual é a diferença entre as seguintes configurações abaixo.

URL / local original da aplicação: link

1ª configuração / configuração

ProxyPreserveHost On
ProxyPass /app http://localhost:8080/MyServerApp/App_1 retry=0
ProxyPassReverse /app http://localhost:8080/MyServerApp/App_1

2ª configuração / configuração

<Location /app >
   ProxyPass          http://localhost:8080/MyServerApp/App_1
   ProxyPassReverse   http://localhost:8080/MyServerApp/App_1
</Location>
    
por R.S. Abarro 15.04.2016 / 12:21

1 resposta

0

As diferentes sintaxes são funcionalmente idênticas. Conforme declarado no manual :

When used inside a <Location> section, the first argument (of the directive syntax ProxyPass [PATH] !|URL) is omitted and the local directory is obtained from the <Location>.

    
por 15.04.2016 / 13:01