Browser warning via Apache proxy

Moderator: crythias

Locked
ivicav
Znuny newbie
Posts: 21
Joined: 12 Jun 2012, 14:16
Znuny Version: 5.0.1
Real Name: Ivica Vujovic
Company: BELIT

Browser warning via Apache proxy

Post by ivicav »

I setup Apache proxy in front of OTRS but when I tried to access to link I got an error on page:

The browser you are using is too old. OTRS runs with a huge lists of browsers, please upgrade to one of these. Please see the documentation or ask your admin for further information.

Here is my apache config

Code: Select all

<VirtualHost my.web.domain:80>
       ProxyPass /otrs http://192.168.0.249/otrs
       ProxyPassReverse /otrs http://192.168.0.249/otrs
       RedirectMatch ^/$ http://192.168.0.249/otrs
</VirtualHost>
Is there something I did wrong?
ivicav
Znuny newbie
Posts: 21
Joined: 12 Jun 2012, 14:16
Znuny Version: 5.0.1
Real Name: Ivica Vujovic
Company: BELIT

Re: Browser warning via Apache proxy

Post by ivicav »

Found. I forgot to insert otrs-web in config file

Code: Select all

<VirtualHost my.web.domain:80>
       ProxyPass /otrs http://192.168.0.249/otrs
       ProxyPass /otrs-web http://192.168.0.249/otrs-web
       ProxyPassReverse /otrs http://192.168.0.249/otrs
       ProxyPassReverse /otrs-web http://192.168.0.249/otrs-web
       RedirectMatch ^/$ http://192.168.0.249/otrs
</VirtualHost>
Locked