Enable mod_proxy_wstunnel

We want to use websockets. Websockets requires that mod_proxy_wstunnel
be enabled. THis wasn't enabled by default so go ahead and enable it
here.

Change-Id: I2d9a1ec7cffba461d7d36dceeef241956f6d732b
This commit is contained in:
Clark Boylan 2018-11-01 15:19:33 -07:00
parent e5a9ea6909
commit a9286096e7
1 changed files with 5 additions and 0 deletions

View File

@ -55,6 +55,11 @@ class etherpad_lite::apache (
ensure => present,
}
}
if !defined(Httpd::Mod['proxy_wstunnel']) {
httpd::mod { 'proxy_wstunnel':
ensure => present,
}
}
if ($auth_openid != undef) {
if !defined(Package['libapache2-mod-auth-openid']) {
package { 'libapache2-mod-auth-openid':