Make WSGI process display-name configurable
Change-Id: I3bfbd0283d1e9005719085d86cd00729c9002c43
This commit is contained in:
@@ -70,6 +70,10 @@
|
|||||||
# (Optional) The number of threads for the vhost.
|
# (Optional) The number of threads for the vhost.
|
||||||
# Defaults to 1
|
# Defaults to 1
|
||||||
#
|
#
|
||||||
|
# [*wsgi_process_display_name*]
|
||||||
|
# (Optional) Name of the WSGI process display-name.
|
||||||
|
# Defaults to 'keystone'
|
||||||
|
#
|
||||||
# [*wsgi_application_group*]
|
# [*wsgi_application_group*]
|
||||||
# (Optional) The application group of the WSGI script.
|
# (Optional) The application group of the WSGI script.
|
||||||
# Defaults to '%{GLOBAL}'
|
# Defaults to '%{GLOBAL}'
|
||||||
@@ -157,6 +161,7 @@ class keystone::wsgi::apache (
|
|||||||
$ssl_crl_path = undef,
|
$ssl_crl_path = undef,
|
||||||
$ssl_crl = undef,
|
$ssl_crl = undef,
|
||||||
$ssl_certs_dir = undef,
|
$ssl_certs_dir = undef,
|
||||||
|
$wsgi_process_display_name = 'keystone',
|
||||||
$threads = 1,
|
$threads = 1,
|
||||||
$priority = '10',
|
$priority = '10',
|
||||||
$wsgi_application_group = '%{GLOBAL}',
|
$wsgi_application_group = '%{GLOBAL}',
|
||||||
@@ -206,7 +211,7 @@ class keystone::wsgi::apache (
|
|||||||
ssl_crl => $ssl_crl,
|
ssl_crl => $ssl_crl,
|
||||||
ssl_certs_dir => $ssl_certs_dir,
|
ssl_certs_dir => $ssl_certs_dir,
|
||||||
wsgi_daemon_process => 'keystone',
|
wsgi_daemon_process => 'keystone',
|
||||||
wsgi_process_display_name => 'keystone',
|
wsgi_process_display_name => $wsgi_process_display_name,
|
||||||
wsgi_process_group => 'keystone',
|
wsgi_process_group => 'keystone',
|
||||||
wsgi_script_dir => $::keystone::params::keystone_wsgi_script_path,
|
wsgi_script_dir => $::keystone::params::keystone_wsgi_script_path,
|
||||||
wsgi_script_file => 'keystone',
|
wsgi_script_file => 'keystone',
|
||||||
|
@@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
The new ``keystone::wsgi::apache::wsgi_process_display_name`` parameter
|
||||||
|
has been added.
|
Reference in New Issue
Block a user