20e5d5b58d
Changes include changing upstream git clone and pinning to the version we run in production. Also new apache 2.4 syntax. Change-Id: I3a214a42d3c49a1ea36fe84d21a275d736dfb889 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
17 lines
457 B
Plaintext
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>
|