system-config/modules/openstack_project/templates/puppetboard/puppetboard.vhost.erb

17 lines
457 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
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
</VirtualHost>