Make WSGI process display-name configurable

Change-Id: I3bfbd0283d1e9005719085d86cd00729c9002c43
This commit is contained in:
Takashi Kajinami 2022-08-27 22:51:41 +09:00
parent 16309d9d06
commit 91483e50e8
2 changed files with 11 additions and 1 deletions

View File

@ -70,6 +70,10 @@
# (Optional) The number of threads for the vhost.
# Defaults to 1
#
# [*wsgi_process_display_name*]
# (Optional) Name of the WSGI process display-name.
# Defaults to 'keystone'
#
# [*wsgi_application_group*]
# (Optional) The application group of the WSGI script.
# Defaults to '%{GLOBAL}'
@ -157,6 +161,7 @@ class keystone::wsgi::apache (
$ssl_crl_path = undef,
$ssl_crl = undef,
$ssl_certs_dir = undef,
$wsgi_process_display_name = 'keystone',
$threads = 1,
$priority = '10',
$wsgi_application_group = '%{GLOBAL}',
@ -206,7 +211,7 @@ class keystone::wsgi::apache (
ssl_crl => $ssl_crl,
ssl_certs_dir => $ssl_certs_dir,
wsgi_daemon_process => 'keystone',
wsgi_process_display_name => 'keystone',
wsgi_process_display_name => $wsgi_process_display_name,
wsgi_process_group => 'keystone',
wsgi_script_dir => $::keystone::params::keystone_wsgi_script_path,
wsgi_script_file => 'keystone',

View File

@ -0,0 +1,5 @@
---
features:
- |
The new ``keystone::wsgi::apache::wsgi_process_display_name`` parameter
has been added.