Include zaqar apache module

This includes the Zaqar apache module, allowing to run Zaqar behind
httpd.

Depends-On: I69b923dd76a60e9ec786cae886c137ba572ec906
Change-Id: Ib52144e5877d9293057713d6bdca557724baad5c
This commit is contained in:
Thomas Herve 2017-03-21 09:51:26 +01:00
parent 02f5102eeb
commit 2ce8aa08e5
2 changed files with 8 additions and 2 deletions

View File

@ -53,8 +53,11 @@ class tripleo::profile::base::zaqar (
include ::zaqar::transport::wsgi
# TODO (bcrochet): At some point, the transports should be split out to
# seperate services.
include ::zaqar::server
# separate services.
class { '::zaqar::server':
service_name => 'httpd', # TODO cleanup when passed by t-h-t.
}
include ::zaqar::wsgi::apache
zaqar::server_instance{ '1':
transport => 'websocket'
}

View File

@ -0,0 +1,3 @@
---
features:
- Run the Zaqar WSGI service over httpd.