How To Install python-certbot-nginx-doc on Ubuntu 20.04
Introduction
In this tutorial we learn how to install python-certbot-nginx-doc on Ubuntu 20.04.
What is python-certbot-nginx-doc
python-certbot-nginx-doc is:
The objective of Certbot, Let’s Encrypt, and the ACME (Automated Certificate Management Environment) protocol is to make it possible to set up an HTTPS server and have it automatically obtain a browser-trusted certificate, without any human intervention. This is accomplished by running a certificate management agent on the web server.
This agent is used to:
- Automatically prove to the Let’s Encrypt CA that you control the website
- Obtain a browser-trusted certificate and set it up on your web server
- Keep track of when your certificate is going to expire, and renew it
- Help you revoke the certificate if that ever becomes necessary.
This package contains the documentation for the Nginx plugin.
Package: python-certbot-nginx-doc Architecture: all Version: 0.39.0-1 Priority: extra Section: universe/doc Source: python-certbot-nginx Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian Let’s Encrypt [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 429 Depends: libjs-sphinxdoc (>= 1.0), sphinx-rtd-theme-common (>= 0.4.3+dfsg) Filename: pool/universe/p/python-certbot-nginx/python-certbot-nginx-doc_0.39.0-1_all.deb Size: 41904 MD5sum: 14b8062fd6f69ad32b8f487f82c00270 SHA1: 8ffec6f806569c70858a402d1daa4536c29475ad SHA256: cb33cff6ae2afd8876643fd4cbad0caeabb55ea0c21ec9a4ead31965d2a0e82a Homepage: https://letsencrypt.org/ Description-en: Nginx plugin documentation for Certbot The objective of Certbot, Let’s Encrypt, and the ACME (Automated Certificate Management Environment) protocol is to make it possible to set up an HTTPS server and have it automatically obtain a browser-trusted certificate, without any human intervention. This is accomplished by running a certificate management agent on the web server.
This agent is used to:
- Automatically prove to the Let’s Encrypt CA that you control the website
- Obtain a browser-trusted certificate and set it up on your web server
- Keep track of when your certificate is going to expire, and renew it
- Help you revoke the certificate if that ever becomes necessary.
This package contains the documentation for the Nginx plugin.
There are three methods to install python-certbot-nginx-doc on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install python-certbot-nginx-doc Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install python-certbot-nginx-doc using apt-get by running the following command:
sudo apt-get -y install python-certbot-nginx-doc
Install python-certbot-nginx-doc Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install python-certbot-nginx-doc using apt by running the following command:
sudo apt -y install python-certbot-nginx-doc
Install python-certbot-nginx-doc Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install python-certbot-nginx-doc using aptitude by running the following command:
sudo aptitude -y install python-certbot-nginx-doc
How To Uninstall python-certbot-nginx-doc on Ubuntu 20.04
To uninstall only the python-certbot-nginx-doc package we can use the following command:
sudo apt-get remove python-certbot-nginx-doc
Uninstall python-certbot-nginx-doc And Its Dependencies
To uninstall python-certbot-nginx-doc and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove python-certbot-nginx-doc
Remove python-certbot-nginx-doc Configurations and Data
To remove python-certbot-nginx-doc configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge python-certbot-nginx-doc
Remove python-certbot-nginx-doc configuration, data, and all of its dependencies
We can use the following command to remove python-certbot-nginx-doc configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge python-certbot-nginx-doc
References
Summary
In this tutorial we learn how to install python-certbot-nginx-doc package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.