You can see from the images below that when a user goes to the site using the name of the server where the graphs are, the graphs will load fine. But when you try to connect to the graphs using an address that has been aliased, the images fail to load.
Works:
Code: Select all
http://tool.box.com/cacti_ut/graph_view.php?action=tree&tree_id=32&leaf_id=7733&select_first=true
Code: Select all
https://ut.test.gov/seerdms/cacti_ut/graph_view.php?action=tree&tree_id=32&leaf_id=7733&select_first=true
Code: Select all
Alias /cacti_ut/ /usr/local/dms_cacti/cacti-0.8.7e_ut/
Alias /cacti_ut /usr/local/dms_cacti/cacti-0.8.7e_ut/
<Directory "/usr/local/dms_cacti/cacti-0.8.7e_ut">
Options None
AllowOverride AuthConfig Options
Order allow,deny
Allow from all
</Directory>
Code: Select all
<Proxy http://tool.box.com/cacti_ut>
Order allow,deny
Allow from all
AuthName "UT Cacti Graphs"
AuthType Basic
AuthUserFile /prj/.htpasswd
Require user cacti
</Proxy>
Code: Select all
$config['url_path'] = '/cacti_ut/';