localhost_sso: Fix missing enabling of mod_wsgi.

This is apparently required on Ubuntu Xenial, at least.
This commit is contained in:
Tim Abbott
2018-02-22 10:05:32 -08:00
parent f50e325075
commit 65767e5226

View File

@@ -7,7 +7,7 @@ class zulip::apache_sso {
$apache_former_packages = [ "apache2", "libapache2-mod-wsgi", ]
package { $apache_legacy_packages: ensure => "absent" }
apache2mod { [ "headers", "proxy", "proxy_http", "rewrite", "ssl", ]:
apache2mod { [ "headers", "proxy", "proxy_http", "rewrite", "ssl", "wsgi", ]:
ensure => present,
require => Package['apache2'],
}