Run Zaqar with mod_wsgi

This switches zaqar server to run with Apache mod_wsgi.

Change-Id: I2dd2525dfcebf821283b4312038f58a947c87c95
This commit is contained in:
Thomas Herve 2017-03-07 14:39:15 +01:00
parent 5c0e5108b6
commit 30f2d9a3c3
3 changed files with 8 additions and 1 deletions

View File

@ -553,6 +553,8 @@ include ::zaqar::transport::websocket
include ::zaqar::transport::wsgi
include ::zaqar::server
include ::zaqar::wsgi::apache
zaqar::server_instance{ '1':
transport => 'websocket'
}

View File

@ -600,9 +600,11 @@ zaqar::keystone::auth_websocket::internal_url: {{UNDERCLOUD_ENDPOINT_ZAQAR_WEBSO
zaqar::keystone::auth_websocket::admin_url: {{UNDERCLOUD_ENDPOINT_ZAQAR_WEBSOCKET_ADMIN}}
zaqar::keystone::auth_websocket::region: 'regionOne'
zaqar::keystone::auth_websocket::password: {{UNDERCLOUD_ZAQAR_PASSWORD}}
zaqar::server::service_name: 'httpd'
zaqar::unreliable: true
zaqar::transport::websocket::bind: {{LOCAL_IP}}
zaqar::transport::wsgi::bind: {{LOCAL_IP}}
zaqar::wsgi::apache::bind_host: {{LOCAL_IP}}
zaqar::wsgi::apache::ssl: false
zaqar::message_store: swift
zaqar::management_store: sqlalchemy
zaqar::management::sqlalchemy::uri: mysql+pymysql://zaqar:{{UNDERCLOUD_ZAQAR_PASSWORD}}@{{LOCAL_IP}}/zaqar

View File

@ -0,0 +1,3 @@
---
features:
- Zaqar API now run over httpd in the undercloud.