You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
511 B
25 lines
511 B
# ************************************
|
|
# Managed by Puppet
|
|
# ************************************
|
|
|
|
<VirtualHost *:80>
|
|
ServerName <%= @vhost_name %>
|
|
|
|
Alias /cacti /usr/share/cacti/site
|
|
Alias /javascript /usr/share/javascript
|
|
|
|
RewriteEngine on
|
|
RewriteRule ^/$ /cacti/graph_view.php [R,L]
|
|
|
|
<Directory /usr/share/cacti/site>
|
|
Options +FollowSymLinks
|
|
AllowOverride None
|
|
Require all granted
|
|
|
|
AddType application/x-httpd-php .php
|
|
|
|
DirectoryIndex index.php
|
|
</Directory>
|
|
|
|
</VirtualHost>
|