Include zaqar apache module
authorThomas Herve <therve@redhat.com>
Tue, 21 Mar 2017 08:51:26 +0000 (09:51 +0100)
committerThomas Herve <therve@redhat.com>
Thu, 20 Apr 2017 10:19:59 +0000 (12:19 +0200)
This includes the Zaqar apache module, allowing to run Zaqar behind
httpd.

Depends-On: I69b923dd76a60e9ec786cae886c137ba572ec906
Change-Id: Ib52144e5877d9293057713d6bdca557724baad5c

manifests/profile/base/zaqar.pp
releasenotes/notes/zaqar-httpd-93db7feb60622687.yaml [new file with mode: 0644]

index 89a03ad..cd2ac60 100644 (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'
     }
diff --git a/releasenotes/notes/zaqar-httpd-93db7feb60622687.yaml b/releasenotes/notes/zaqar-httpd-93db7feb60622687.yaml
new file mode 100644 (file)
index 0000000..cff9d65
--- /dev/null
@@ -0,0 +1,3 @@
+---
+features:
+  - Run the Zaqar WSGI service over httpd.