We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The documentation for the apache::servername directive at https://forge.puppet.com/modules/puppetlabs/apache/reference#-apache--servername (source at https://github.com/puppetlabs/puppetlabs-apache/blob/main/manifests/init.pp#L307C1-L309C55) says that this "Sets the Apache server name via Apache's ServerName directive." However, the servername option is not used any further in init.pp, and in particular it does not get passed into the default or default-ssl vhosts.
apache::servername
ServerName
servername
init.pp
default
default-ssl
The servername directive is used to set the servername directive in the default/default-ssl vhosts.
Steps to reproduce the behavior:
servername => 'example.com', default_https_vhost => true, }
15-default-80.conf
15-default-ssl-443.conf
example.com
Changing this is going to involve some sort of breaking change, especially since the filename is set based on the servername value.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the Bug
The documentation for the
apache::servername
directive at https://forge.puppet.com/modules/puppetlabs/apache/reference#-apache--servername (source at https://github.com/puppetlabs/puppetlabs-apache/blob/main/manifests/init.pp#L307C1-L309C55) says that this "Sets the Apache server name via Apache'sServerName
directive." However, theservername
option is not used any further ininit.pp
, and in particular it does not get passed into thedefault
ordefault-ssl
vhosts.Expected Behavior
The servername directive is used to set the
servername
directive in thedefault
/default-ssl
vhosts.Steps to Reproduce
Steps to reproduce the behavior:
servername
directive, such as by15-default-80.conf
and15-default-ssl-443.conf
files, and see thatServerName
is set todefault
instead ofexample.com
Environment
Additional Context
Changing this is going to involve some sort of breaking change, especially since the filename is set based on the servername value.
The text was updated successfully, but these errors were encountered: