5740ed3118
This places the puppet web dashboard puppetboard from https://github.com/nedap/puppetboard onto the puppetdb server. This enables anyone to see the output of puppet runs, which nodes are failing and which nodes have not checked in over time. We can also quickly and interactively query the facts database. This also modifies install_modules.sh to support a list of modules that will be installed without dependency resolution. Change-Id: I09d09410dd8fa71759ce6b2f9c7f34f78eefe204
14 lines
377 B
Plaintext
14 lines
377 B
Plaintext
<VirtualHost *:<%= @port %>>
|
|
ServerName <%= @fqdn %>
|
|
|
|
WSGIDaemonProcess puppetboard user=<%= @user %> group=<%= @group %> threads=5
|
|
WSGIScriptAlias / <%= @docroot %>/wsgi.py
|
|
|
|
<Directory <%= @docroot %>>
|
|
WSGIProcessGroup <%= @group %>
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
Order deny,allow
|
|
Allow from all
|
|
</Directory>
|
|
</VirtualHost>
|