1
0
mirror of https://github.com/certbot/certbot.git synced 2025-08-09 15:02:48 +03:00

s/Let's Encrypt/Certbot certbot-apache

This commit is contained in:
Brad Warren
2016-04-13 16:36:53 -07:00
parent 2002511f81
commit 755dc2f08d
7 changed files with 9 additions and 9 deletions

View File

@@ -1 +1 @@
Apache plugin for Let's Encrypt client
Apache plugin for Certbot

View File

@@ -1 +1 @@
"""Let's Encrypt Apache plugin."""
"""Certbot Apache plugin."""

View File

@@ -1,2 +1,2 @@
Let's Encrypt includes the very latest Augeas lenses in order to ship bug fixes
Certbot includes the very latest Augeas lenses in order to ship bug fixes
to Apache configuration handling bugs as quickly as possible

View File

@@ -1154,7 +1154,7 @@ class ApacheConfigurator(augeas_configurator.AugeasConfigurator):
for matches in rewrite_args_dict.values():
if [self.aug.get(x) for x in matches] in redirect_args:
raise errors.PluginEnhancementAlreadyPresent(
"Let's Encrypt has already enabled redirection")
"Certbot has already enabled redirection")
def _is_rewrite_exists(self, vhost):
"""Checks if there exists a RewriteRule directive in vhost
@@ -1635,7 +1635,7 @@ def get_file_path(vhost_path):
def install_ssl_options_conf(options_ssl):
"""
Copy Let's Encrypt's SSL options file into the system's config dir if
Copy Certbot's SSL options file into the system's config dir if
required.
"""
# XXX if we ever try to enforce a local privilege boundary (eg, running

View File

@@ -1 +1 @@
"""Let's Encrypt Apache Tests"""
"""Certbot Apache Tests"""

View File

@@ -1,5 +1,5 @@
<VirtualHost *:80>
# How well does Let's Encrypt work without a ServerName/Alias?
# How well does Certbot work without a ServerName/Alias?
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html

View File

@@ -31,9 +31,9 @@ docs_extras = [
setup(
name='certbot-apache',
version=version,
description="Apache plugin for Let's Encrypt client",
description="Apache plugin for Certbot",
url='https://github.com/letsencrypt/letsencrypt',
author="Let's Encrypt Project",
author="Electronic Frontier Foundation",
author_email='client-dev@letsencrypt.org',
license='Apache License 2.0',
classifiers=[