Skip to content

Instantly share code, notes, and snippets.

@arxcruz
Created June 16, 2014 17:49
Show Gist options
  • Save arxcruz/f809a4288a52e5867eca to your computer and use it in GitHub Desktop.
Save arxcruz/f809a4288a52e5867eca to your computer and use it in GitHub Desktop.
puppetboard config
<VirtualHost *:80>
ServerName puppet-master.novalocal
WSGIDaemonProcess puppetboard user=www-data group=www-data threads=5
WSGIScriptAlias / /var/www/puppetboard/wsgi.py
ErrorLog /var/log/apache2/puppetboard.error.log
CustomLog /var/log/apache2/puppetboard.access.log combined
Alias /static /usr/local/lib/python2.7/dist-packages/puppetboard/static
<Directory /usr/local/lib/python2.7/dist-packages/puppetboard>
WSGIProcessGroup puppetboard
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment