summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorShashirekha Gundur <shashirekha.j.gundur@intel.com>2017-03-07 19:16:17 +0000
committerShashirekha Gundur <shashirekha.j.gundur@intel.com>2017-03-07 19:23:15 +0000
commitf789af6ead818061986f04523da11165eee131ff (patch)
tree7eb27025940f638b7f9321a280e09f52bafd9003 /examples
parent7f953ce0b9649c8eb1c1e20348de5949c3a07e3c (diff)
downloadswift-f789af6ead818061986f04523da11165eee131ff.tar.gz
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
Diffstat (limited to 'examples')
-rw-r--r--examples/apache2/account-server.template2
-rw-r--r--examples/apache2/container-server.template2
-rw-r--r--examples/apache2/object-server.template2
-rw-r--r--examples/apache2/proxy-server.template2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/apache2/account-server.template b/examples/apache2/account-server.template
index d4da3d807..071a6cdd8 100644
--- a/examples/apache2/account-server.template
+++ b/examples/apache2/account-server.template
@@ -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}
diff --git a/examples/apache2/container-server.template b/examples/apache2/container-server.template
index 82fa281d3..b0b5c7e70 100644
--- a/examples/apache2/container-server.template
+++ b/examples/apache2/container-server.template
@@ -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}
diff --git a/examples/apache2/object-server.template b/examples/apache2/object-server.template
index a022389d4..36e35792a 100644
--- a/examples/apache2/object-server.template
+++ b/examples/apache2/object-server.template
@@ -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}
diff --git a/examples/apache2/proxy-server.template b/examples/apache2/proxy-server.template
index 959d76ef9..f2b500be6 100644
--- a/examples/apache2/proxy-server.template
+++ b/examples/apache2/proxy-server.template
@@ -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}