Use standard parameter description format for wsgi::apache

Currently parameter description of the <module>::wsgi::apache classes
are formatted differently in individual modules, and this is making
the maintenance effort quite difficult.

This change updates the description format following the standard one
we are globally using in our modules to reduce undesired differences
between modules.

Change-Id: Id99d044171b1fafefd310fafff2ce2f4de1e9fa8
This commit is contained in:
Takashi Kajinami 2022-08-27 22:23:00 +09:00
parent 990298ddd5
commit 8ba78b6b37

View File

@ -24,100 +24,102 @@
# #
# == Parameters # == Parameters
# #
# [*servername*] # [*servername*]
# The servername for the virtualhost. # (Optional) The servername for the virtualhost.
# Optional. Defaults to $::fqdn # Defaults to $::fqdn
# #
# [*port*] # [*port*]
# The port. # (Optional) The port.
# Optional. Defaults to 8041 # Defaults to 8041
# #
# [*bind_host*] # [*bind_host*]
# The host/ip address Apache will listen on. # (Optional) The host/ip address Apache will listen on.
# Optional. Defaults to undef (listen on all ip addresses). # Defaults to undef (listen on all ip addresses).
# #
# [*path*] # [*path*]
# The prefix for the endpoint. # (Optional) The prefix for the endpoint.
# Optional. Defaults to '/' # Defaults to '/'
# #
# [*ssl*] # [*ssl*]
# Use ssl ? (boolean) # (Optional) Use ssl ? (boolean)
# Optional. Defaults to false # Defaults to false
# #
# [*workers*] # [*workers*]
# Number of WSGI workers to spawn. # (Optional) Number of WSGI workers to spawn.
# Optional. Defaults to $::os_workers # Defaults to $::os_workers
# #
# [*priority*] # [*priority*]
# (optional) The priority for the vhost. # (Optional) The priority for the vhost.
# Defaults to 10 # Defaults to 10
# #
# [*threads*] # [*threads*]
# (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*] # [*wsgi_process_display_name*]
# (optional) Name of the WSGI process display-name. # (Optional) Name of the WSGI process display-name.
# Defaults to undef # Defaults to undef
# #
# [*ssl_cert*] # [*ssl_cert*]
# [*ssl_key*] # [*ssl_key*]
# [*ssl_chain*] # [*ssl_chain*]
# [*ssl_ca*] # [*ssl_ca*]
# [*ssl_crl_path*] # [*ssl_crl_path*]
# [*ssl_crl*] # [*ssl_crl*]
# [*ssl_certs_dir*] # [*ssl_certs_dir*]
# apache::vhost ssl parameters. # (Optional) apache::vhost ssl parameters.
# Optional. Default to apache::vhost 'ssl_*' defaults. # Default to apache::vhost 'ssl_*' defaults.
# #
# [*access_log_file*] # [*access_log_file*]
# The log file name for the virtualhost. # (Optional) The log file name for the virtualhost.
# Optional. Defaults to undef. # Defaults to undef.
# #
# [*access_log_pipe*] # [*access_log_pipe*]
# Specifies a pipe where Apache sends access logs for the virtualhost. # (Optional) Specifies a pipe where Apache sends access logs for
# Optional. Defaults to undef. # the virtualhost.
# Defaults to undef.
# #
# [*access_log_syslog*] # [*access_log_syslog*]
# Sends the virtualhost access log messages to syslog. # (Optional) Sends the virtualhost access log messages to syslog.
# Optional. Defaults to undef. # Defaults to undef.
# #
# [*access_log_format*] # [*access_log_format*]
# The log format for the virtualhost. # (Optional) The log format for the virtualhost.
# Optional. Defaults to undef. # Defaults to undef.
# #
# [*error_log_file*] # [*error_log_file*]
# The error log file name for the virtualhost. # (Optional) The error log file name for the virtualhost.
# Optional. Defaults to undef. # Defaults to undef.
# #
# [*error_log_pipe*] # [*error_log_pipe*]
# Specifies a pipe where Apache sends error logs for the virtualhost. # (Optional) Specifies a pipe where Apache sends error logs for
# Optional. Defaults to undef. # the virtualhost.
# Defaults to undef.
# #
# [*error_log_syslog*] # [*error_log_syslog*]
# Sends the virtualhost error log messages to syslog. # (Optional) Sends the virtualhost error log messages to syslog.
# Optional. Defaults to undef. # Defaults to undef.
# #
# [*custom_wsgi_process_options*] # [*custom_wsgi_process_options*]
# (optional) gives you the opportunity to add custom process options or to # (Optional) gives you the opportunity to add custom process options or to
# overwrite the default options for the WSGI main process. # overwrite the default options for the WSGI main process.
# eg. to use a virtual python environment for the WSGI process # eg. to use a virtual python environment for the WSGI process
# you could set it to: # you could set it to:
# { python-path => '/my/python/virtualenv' } # { python-path => '/my/python/virtualenv' }
# Defaults to {} # Defaults to {}
# #
# [*headers*] # [*headers*]
# (optional) Headers for the vhost. # (Optional) Headers for the vhost.
# Defaults to undef # Defaults to undef
# #
# [*request_headers*] # [*request_headers*]
# (optional) Modifies collected request headers in various ways. # (Optional) Modifies collected request headers in various ways.
# Defaults to undef # Defaults to undef
# #
# [*vhost_custom_fragment*] # [*vhost_custom_fragment*]
# (optional) Passes a string of custom configuration # (Optional) Passes a string of custom configuration
# directives to be placed at the end of the vhost configuration. # directives to be placed at the end of the vhost configuration.
# Defaults to undef. # Defaults to undef.
# #
# == Dependencies # == Dependencies
# #