We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The templates file (/templates/apache/conf.erb) uses the pre-2.4 syntax. This is a very easy fix to just change the template file to:
WSGIDaemonProcess puppetboard user=<%= @user -%> group=<%= @user -%> threads=<%= @threads %> maximum-requests=<%= @max_reqs %> WSGIScriptAlias <%= @wsgi_alias -%> <%= @docroot -%>/wsgi.py <Directory <%= @docroot -%>> WSGIProcessGroup puppetboard WSGIApplicationGroup %{GLOBAL} <IfVersion < 2.4> Order allow,deny Allow from all </IfVersion> <IfVersion >= 2.4> Require all granted </IfVersion> </Directory>
Submitting a pull request to that effect.
The text was updated successfully, but these errors were encountered:
#136
Sorry, something went wrong.
Done in #189.
No branches or pull requests
The templates file (/templates/apache/conf.erb) uses the pre-2.4 syntax. This is a very easy fix to just change the template file to:
Submitting a pull request to that effect.
The text was updated successfully, but these errors were encountered: