diff --git a/README.md b/README.md index 5d076f3..87b4c0a 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Need more information? Have a look here: http://piwik.org/blog/2012/08/get-start ### Usage -Open "http://apache.piwik" or "http://nginx.piwik:8080" after installation. You'll see the [Piwik installation](http://piwik.org/docs/installation/#toc-the-5-minute-piwik-installation) screen. +Open "http://apache.piwik" or "http://nginx.piwik:8080" after installation. You'll see the [Piwik installation](http://piwik.org/docs/installation/#toc-the-5-minute-piwik-installation) screen. XHProf is available under "http://xhprof.piwik". ### Installed Packages * PHP @@ -33,6 +33,7 @@ Open "http://apache.piwik" or "http://nginx.piwik:8080" after installation. You' * Subversion * Git * Composer + * XHProf ### Troubleshooting * If you get file permission errors install latest VirtualBox Guest Additons: https://github.com/dotless-de/vagrant-vbguest diff --git a/puppet/modules/piwik b/puppet/modules/piwik index db98062..ea2b41c 160000 --- a/puppet/modules/piwik +++ b/puppet/modules/piwik @@ -1 +1 @@ -Subproject commit db9806203248292fc3a19c55e13e5cf885695846 +Subproject commit ea2b41c86e161d6c49c4d0fc38cbb0f9abee2811 diff --git a/puppet/site.pp b/puppet/site.pp index 4addf8d..c8fda9e 100644 --- a/puppet/site.pp +++ b/puppet/site.pp @@ -27,3 +27,17 @@ user => 'vagrant', group => 'vagrant', } + +host { 'xhrof.piwik': + ip => "127.0.0.1", +} + +apache::vhost { 'xhprof.piwik': + docroot => '/usr/share/php/xhprof_html', + priority => '20', + port => '80', + ssl => false, + override => 'All', + require => Piwik::Apache['apache.piwik'], + logroot => '/var/log/xhprof.piwik' +} \ No newline at end of file