mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 00:22:04 +02:00
Fix naming in error message (#5181)
This commit is contained in:
committed by
Brad Warren
parent
1081a2501f
commit
232f5a92d1
@@ -1295,13 +1295,13 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator):
|
|||||||
.. note:: This function saves the configuration
|
.. note:: This function saves the configuration
|
||||||
|
|
||||||
:param ssl_vhost: Destination of traffic, an ssl enabled vhost
|
:param ssl_vhost: Destination of traffic, an ssl enabled vhost
|
||||||
:type ssl_vhost: :class:`~letsencrypt_apache.obj.VirtualHost`
|
:type ssl_vhost: :class:`~certbot_apache.obj.VirtualHost`
|
||||||
|
|
||||||
:param unused_options: Not currently used
|
:param unused_options: Not currently used
|
||||||
:type unused_options: Not Available
|
:type unused_options: Not Available
|
||||||
|
|
||||||
:returns: Success, general_vhost (HTTP vhost)
|
:returns: Success, general_vhost (HTTP vhost)
|
||||||
:rtype: (bool, :class:`~letsencrypt_apache.obj.VirtualHost`)
|
:rtype: (bool, :class:`~certbot_apache.obj.VirtualHost`)
|
||||||
|
|
||||||
"""
|
"""
|
||||||
min_apache_ver = (2, 3, 3)
|
min_apache_ver = (2, 3, 3)
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ class NginxTlsSni01(common.TLSSNI01):
|
|||||||
break
|
break
|
||||||
if not included:
|
if not included:
|
||||||
raise errors.MisconfigurationError(
|
raise errors.MisconfigurationError(
|
||||||
'LetsEncrypt could not find an HTTP block to include '
|
'Certbot could not find an HTTP block to include '
|
||||||
'TLS-SNI-01 challenges in %s.' % root)
|
'TLS-SNI-01 challenges in %s.' % root)
|
||||||
|
|
||||||
config = [self._make_server_block(pair[0], pair[1])
|
config = [self._make_server_block(pair[0], pair[1])
|
||||||
|
|||||||
Reference in New Issue
Block a user