display swift services in apache2

$sudo service apache2 status ; was not listing swift-service
names correctly; with this change this is the output we see
http://paste.openstack.org/show/601822/

Change-Id: I11b17bcf8c206afaed51bd27090cdf3108f7aee2
Closes-Bug: #1665156
This commit is contained in:
Shashirekha Gundur 2017-03-07 19:16:17 +00:00
parent 7f953ce0b9
commit f789af6ead
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ NameVirtualHost *:%PORT%
Listen %PORT%
<VirtualHost *:%PORT%>
WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER%
WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER% display-name=%{GROUP}
WSGIProcessGroup %SERVICENAME%
WSGIScriptAlias / /var/www/swift/%SERVICENAME%.wsgi
WSGIApplicationGroup %{GLOBAL}

View File

@ -14,7 +14,7 @@ NameVirtualHost *:%PORT%
Listen %PORT%
<VirtualHost *:%PORT%>
WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER%
WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER% display-name=%{GROUP}
WSGIProcessGroup %SERVICENAME%
WSGIScriptAlias / /var/www/swift/%SERVICENAME%.wsgi
WSGIApplicationGroup %{GLOBAL}

View File

@ -14,7 +14,7 @@ NameVirtualHost *:%PORT%
Listen %PORT%
<VirtualHost *:%PORT%>
WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER%
WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER% display-name=%{GROUP}
WSGIProcessGroup %SERVICENAME%
WSGIScriptAlias / /var/www/swift/%SERVICENAME%.wsgi
WSGIApplicationGroup %{GLOBAL}

View File

@ -16,7 +16,7 @@ Listen %PORT%
<VirtualHost *:%PORT%>
# The limit of an object size
LimitRequestBody 5368709122
WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER%
WSGIDaemonProcess %SERVICENAME% processes=5 threads=1 user=%USER% display-name=%{GROUP}
WSGIProcessGroup %SERVICENAME%
WSGIScriptAlias / /var/www/swift/%SERVICENAME%.wsgi
WSGIApplicationGroup %{GLOBAL}