Pnp4nagios graphs in distribututed monitoring not shown - strict-origin-when-cross-origin

Thanks for the reference! The reverse proxy part hadn’t been setup.

I am having difficulty setting up the reverse proxy - either it doesn’t work (404) or the browser gets stuck in a redirection loop.

mod_proxy and mod_rewrite are both enabled, and based on the redirection loop experience - I know the config file is getting read, but I’m missing something here.

Following the 1.6 documentation, the proxy config reads:

<Location /prod_east>
        Options +FollowSymLinks
        RewriteEngine On
        RewriteRule ^/./prod_east/(.*) http://site-east.domain.com/prod_east/$1 [P]
</Location>

and I get 404 errors when browsing to /prod_east/, or when trying to load the graph.

Following the 1.6 documentation (as well as another forum post (can’t link, I’m too new to post more than 2 links)), my proxy configuration is:

<Location /prod_east>
        Options +FollowSymLinks
        RewriteEngine On
        RewriteRule ^/.+/prod_east/(.*) http://site-east.domain.com/prod_east/$1 [P]
</Location>

and Chrome generates an error of ERR_TOO_MANY_REDIRECTS

Thanks again for your help,

Tim