Using Klaros with Apache reverse proxy

Maciej Sawicki, geändert vor 13 Jahren.

Using Klaros with Apache reverse proxy

Youngling Beiträge: 5 Beitrittsdatum: 27.01.11 Neueste Beiträge
Hi,
I installed Klaros on our development server. I would like to make url little nicer. I setuped reverse proxy:


# mod_proxy setup.
ProxyRequests Off
ProxyPass /klaros-web http://127.0.0.1:18080/klaros-web
ProxyPassReverse /klaros-web http://127.0.0.1:18080/klaros-web

<Location "/klaros-web">
  # Configurations specific to this location. Add what you need.
  # For instance, you can add mod_proxy_html directives to fix
  # links in the HTML code. See link at end of this page about using
  # mod_proxy_html.

  # Allow access to this proxied URL location for everyone.
  Order allow,deny
  Allow from all
</Location>


It almost works, but there is issue with test execution. The pop up window is displaying login dialog instead of actual test case and it doesn't allow to login, so i can't continue executing.

I will appreciate any advice.

regards,
Maciej Sawicki
thumbnail
Tobias Schmitt, geändert vor 13 Jahren.

RE: Using Klaros with Apache reverse proxy (Antwort)

Padawan Beiträge: 71 Beitrittsdatum: 12.02.09 Neueste Beiträge
Hi Maciej,

can you please check the parameter "Application URL" in the category "Configure" in Klaros-Testmanagement. You can find it under "System Parameters | General". This parameter must be set to the new proxy URL of Klaros. Without this, Klaros will not work properly when running behind a proxy.

Regards,

Tobias Schmitt
Maciej Sawicki, geändert vor 13 Jahren.

RE: Using Klaros with Apache reverse proxy

Youngling Beiträge: 5 Beitrittsdatum: 27.01.11 Neueste Beiträge
Hi Tobias,

Thank You for quick answer. the url wasn't set. After setting it to https://somedomain/klaros-web everything works grate.