From e62c906baf9f94be1cd4d3a66c3e5b7b6324bed8 Mon Sep 17 00:00:00 2001 From: Marian Horban Date: Wed, 24 Jun 2015 16:25:16 -0400 Subject: [PATCH] Added processing /compute URL With config option NOVA_USE_MOD_WSGI=True nova-api handles requests on /compute URL. Depends on I83bc4731507fa028377ae6701ed4d32adefa9251 Change-Id: Ic84b5c0dc0726662470ef9c076a0cadca55a3917 --- files/apache-nova-api.template | 9 +++++++++ lib/nova | 18 ++++++++++++------ 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/files/apache-nova-api.template b/files/apache-nova-api.template index 301a3bdbdd..49081528ff 100644 --- a/files/apache-nova-api.template +++ b/files/apache-nova-api.template @@ -14,3 +14,12 @@ Listen %PUBLICPORT% %SSLCERTFILE% %SSLKEYFILE% + +Alias /compute %PUBLICWSGI% + + SetHandler wsgi-script + Options +ExecCGI + WSGIProcessGroup nova-api + WSGIApplicationGroup %{GLOBAL} + WSGIPassAuthorization On + diff --git a/lib/nova b/lib/nova index 88b336a1be..41248b10ed 100644 --- a/lib/nova +++ b/lib/nova @@ -405,19 +405,25 @@ function create_nova_accounts { local nova_service=$(get_or_create_service "nova" \ "compute" "Nova Compute Service") + local nova_api_url + if [[ "$NOVA_USE_MOD_WSGI" == "False" ]]; then + nova_api_url="$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT" + else + nova_api_url="$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST/compute" + fi get_or_create_endpoint $nova_service \ "$REGION_NAME" \ - "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2/\$(tenant_id)s" \ - "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2/\$(tenant_id)s" \ - "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2/\$(tenant_id)s" + "$nova_api_url/v2/\$(tenant_id)s" \ + "$nova_api_url/v2/\$(tenant_id)s" \ + "$nova_api_url/v2/\$(tenant_id)s" local nova_v21_service=$(get_or_create_service "novav21" \ "computev21" "Nova Compute Service V2.1") get_or_create_endpoint $nova_v21_service \ "$REGION_NAME" \ - "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2.1/\$(tenant_id)s" \ - "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2.1/\$(tenant_id)s" \ - "$NOVA_SERVICE_PROTOCOL://$NOVA_SERVICE_HOST:$NOVA_SERVICE_PORT/v2.1/\$(tenant_id)s" + "$nova_api_url/v2.1/\$(tenant_id)s" \ + "$nova_api_url/v2.1/\$(tenant_id)s" \ + "$nova_api_url/v2.1/\$(tenant_id)s" fi fi