mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 00:02:14 -04:00
Merge pull request #4876 from tchollingsworth/combining-plugins-docs
docs: explain how to combine plugins
This commit is contained in:
commit
de1f9c4fe3
1 changed files with 21 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ serve your website over HTTPS using certificates obtained by certbot.
|
|||
|
||||
Plugins that do both can be used with the ``certbot run`` command, which is the default
|
||||
when no command is specified. The ``run`` subcommand can also be used to specify
|
||||
a combination of distinct authenticator and installer plugins.
|
||||
a combination_ of distinct authenticator and installer plugins.
|
||||
|
||||
=========== ==== ==== =============================================================== =============================
|
||||
Plugin Auth Inst Notes Challenge types (and port)
|
||||
|
|
@ -205,6 +205,26 @@ perform the authentication procedure and/or clean up after it by using
|
|||
the ``--manual-auth-hook`` and ``--manual-cleanup-hook`` flags. This is
|
||||
described in more depth in the hooks_ section.
|
||||
|
||||
.. _combination:
|
||||
|
||||
Combining plugins
|
||||
-----------------
|
||||
|
||||
Sometimes you may want to specify a combination of distinct authenticator and
|
||||
installer plugins. To do so, specify the authenticator plugin with
|
||||
``--authenticator`` or ``-a`` and the installer plugin with ``--installer`` or
|
||||
``-i``.
|
||||
|
||||
For instance, you may want to create a certificate using the webroot_ plugin
|
||||
for authentication and the apache_ plugin for installation, perhaps because you
|
||||
use a proxy or CDN for SSL and only want to secure the connection between them
|
||||
and your origin server, which cannot use the tls-sni-01_ challenge due to the
|
||||
intermediate proxy.
|
||||
|
||||
::
|
||||
|
||||
certbot run -a webroot -i apache -w /var/www/html -d example.com
|
||||
|
||||
.. _third-party-plugins:
|
||||
|
||||
Third-party plugins
|
||||
|
|
|
|||
Loading…
Reference in a new issue