<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Certbot Archives - LinuxTuto</title>
	<atom:link href="https://www.linuxtuto.com/tag/certbot/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.linuxtuto.com/tag/certbot/</link>
	<description>Linux Sysadmin and DevOps blog</description>
	<lastBuildDate>Mon, 13 Feb 2023 16:00:03 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>

<image>
	<url>https://www.linuxtuto.com/wp-content/uploads/2022/01/cropped-LT_faveicon-32x32.png</url>
	<title>Certbot Archives - LinuxTuto</title>
	<link>https://www.linuxtuto.com/tag/certbot/</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">201456972</site>	<item>
		<title>How To Secure Nginx with Let’s Encrypt on Ubuntu 22.04</title>
		<link>https://www.linuxtuto.com/how-to-secure-nginx-with-lets-encrypt-on-ubuntu-22-04/</link>
					<comments>https://www.linuxtuto.com/how-to-secure-nginx-with-lets-encrypt-on-ubuntu-22-04/#respond</comments>
		
		<dc:creator><![CDATA[LinuxTuto]]></dc:creator>
		<pubDate>Mon, 13 Feb 2023 16:00:03 +0000</pubDate>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Certbot]]></category>
		<category><![CDATA[Let's Encrypt]]></category>
		<category><![CDATA[Nginx]]></category>
		<guid isPermaLink="false">https://www.linuxtuto.com/?p=1101</guid>

					<description><![CDATA[<p>Let&#8217;s Encrypt is a free, automated, and open-certificate authority (CA) that provides Digital SSL/TLS certificates to enable secure encrypted connections for websites. The goal of...</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-secure-nginx-with-lets-encrypt-on-ubuntu-22-04/">How To Secure Nginx with Let’s Encrypt on Ubuntu 22.04</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s Encrypt is a free, automated, and open-certificate authority (CA) that provides Digital SSL/TLS certificates to enable secure encrypted connections for websites. The goal of Let&#8217;s Encrypt is to make encryption widely accessible to everyone and to help create a more secure and privacy-respecting web.</p>
<p>Let&#8217;s Encrypt certificates are valid for 90 days and can be easily renewed. The certificate issuance and renewal process is fully automated, making it easy for website owners to secure their sites with HTTPS.</p>
<p>In addition to being free and easy to use, Let&#8217;s Encrypt is also transparent and collaborative, with a broad community of stakeholders who support its mission and contribute to its development.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 1: Update Operating System</span></h2>
<p>Update your <strong>Ubuntu 22.04</strong> operating system to make sure all existing packages are up to date:</p>
<pre><code>$ sudo apt update &amp;&amp; sudo apt upgrade -y</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 2: Install Nginx webserver</span></h2>
<p>You can install Nginx via <code>apt</code> package manager by executing the following command.</p>
<pre><code>$ sudo apt install nginx</code></pre>
<p>Verify the status of the <code>Nginx</code> service using the following command:</p>
<pre><code>$ sudo systemctl status nginx</code></pre>
<p>Output:</p>
<pre><code><span style="color: #00ff00;">●</span> nginx.service - A high performance web server and a reverse proxy server
     Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
     Active: <span style="color: #00ff00;">active (running)</span>
       Docs: man:nginx(8)
    Process: 30128 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
    Process: 30129 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status=0/SUCCESS)
   Main PID: 30218 (nginx)
      Tasks: 2 (limit: 2196)
     Memory: 10.1M
        CPU: 77ms
     CGroup: /system.slice/nginx.service
             ├─30218 "nginx: master process /usr/sbin/nginx -g daemon on; master_process on;"
             └─30221 "nginx: worker process"</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 3: Install Certbot </span><span class="has-inline-color has-vivid-purple-color">on Ubuntu 22.04</span></h2>
<p>Now we install the Certbot client which is used to create Let’s Encrypt certificates:</p>
<pre><code>$ sudo apt install certbot python3-certbot-nginx</code></pre>
<p>Verify that Certbot is installed and working properly:</p>
<pre><code>$ certbot --version</code></pre>
<p>You should see the version number of Certbot that you just installed:</p>
<pre><code>certbot 1.21.0</code></pre>
<p>Now you can use Certbot to obtain SSL certificates and configure your web server to use them.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 4: Configure Nginx Web Server</span></h2>
<p>Navigate to <code>/etc/nginx/sites-available</code> directory and run the following command to create a configuration file for your installation:</p>
<pre><code class="hljs shell"><span class="hljs-meta">$</span><span class="bash"> sudo nano /etc/nginx/sites-available/your-domain.com.conf</span></code></pre>
<p>Add the following code to the file:</p>
<pre><code>server {
        listen 80;

        root /var/www/html;
        index index.html index.htm index.nginx-debian.html;

        server_name your-domain.com www.your-domain.com;

        location / {
                try_files $uri $uri/ =404;
        }

        error_log /var/log/nginx/your-domain.com.error;
        access_log /var/log/nginx/your-domain.com.access;

}</code></pre>
<p>Remember to replace <strong><code>your-domain.com</code></strong> with the domain name of your server.</p>
<p>Save and exit the configuration file.</p>
<p>Enable the new configuration file.</p>
<pre><code>$ sudo ln -s /etc/nginx/sites-available/your-domain.com.conf /etc/nginx/sites-enabled/your-domain.com.conf</code></pre>
<p>Check Nginx syntax:</p>
<pre><code>$ sudo nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
</code></pre>
<p>To implement the changes, restart Nginx webserver:</p>
<pre><code>$ sudo systemctl restart nginx</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 5: Get the Let’s Encrypt SSL certificate</span></h2>
<p>To get the SSL certificate using the Certbot, type the command given below:</p>
<pre><code>$ sudo certbot --nginx</code></pre>
<p>You will be asked to provide your valid email address and accept the term of service:</p>
<pre><code>Saving debug log to /var/log/letsencrypt/letsencrypt.log
Enter email address (used for urgent renewal and security notices)
 (Enter 'c' to cancel): <span style="color: #339966;"><strong>admin@your-domain.com
</strong></span>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Please read the Terms of Service at
https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf. You must
agree in order to register with the ACME server. Do you agree?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: <span style="color: #339966;"><strong>Y</strong></span></code></pre>
<p>Next, you’ll be asked if you want to share your email with the Electronic Frontier Foundation to receive news and other information. If you do not want to subscribe to their content, write <strong>N</strong>.</p>
<pre><code>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Would you be willing, once your first certificate is successfully issued, to
share your email address with the Electronic Frontier Foundation, a founding
partner of the Let's Encrypt project and the non-profit organization that
develops Certbot? We'd like to send you email about our work encrypting the web,
EFF news, campaigns, and ways to support digital freedom.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: <strong><span style="color: #339966;">N
</span></strong></code></pre>
<p>Next, you will be asked to select the domain on which you want to install the Let’s Encrypt SSL:</p>
<pre><code>Account registered.

Which names would you like to activate HTTPS for?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1: your-domain.com
2: www.your-domain.com
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Select the appropriate numbers separated by commas and/or spaces, or leave input
blank to select all options shown (Enter 'c' to cancel):
</code></pre>
<p>If the SSL certificate is successfully obtained, certbot displays a message to show the configuration was successful:</p>
<pre><code>IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at:
   /etc/letsencrypt/live/your-domain.com.com/fullchain.pem
   Your key file has been saved at:
   /etc/letsencrypt/live/your-domain.com/privkey.pem
   Your cert will expire on 2023-04-22. To obtain a new or tweaked
   version of this certificate in the future, simply run certbot
   again. To non-interactively renew *all* of your certificates, run
   "certbot renew"
 - Your account credentials have been saved in your Certbot
   configuration directory at /etc/letsencrypt. You should make a
   secure backup of this folder now. This configuration directory will
   also contain certificates and private keys obtained by Certbot so
   making regular backups of this folder is ideal.
 - If you like Certbot, please consider supporting our work by:

   Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
   Donating to EFF:                    https://eff.org/donate-le</code></pre>
<p>Now, you have successfully installed SSL on your website.</p>
<p>You can now open your website using <code>https://</code>, and you’ll notice a green lock icon.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 6: Verifying Certbot Auto-Renewal</span></h2>
<p>Verifying that Certbot&#8217;s auto-renewal is working correctly is an important step in ensuring that your website remains secure. You can verify Certbot&#8217;s auto-renewal by performing the following steps:</p>
<h3><span class="has-inline-color has-vivid-purple-color">Check the Certbot Logs</span></h3>
<p>The Certbot logs are the best place to start when verifying auto-renewal. The logs will contain information about any renewal attempts and any errors that may have occurred. You can access the Certbot logs by running the following command:</p>
<pre><code>$ sudo cat /var/log/letsencrypt/letsencrypt.log</code></pre>
<h3><span class="has-inline-color has-vivid-purple-color">Test the Renewal Process</span></h3>
<p>You can test the renewal process by manually running the Certbot renewal command. To do this, run the following command:</p>
<pre><code>$ sudo certbot renew --dry-run</code></pre>
<p>This will simulate a renewal attempt and will provide you with information about the outcome. If the renewal was successful, you should see a message indicating that the certificates were successfully renewed.</p>
<h3><span class="has-inline-color has-vivid-purple-color">Check the Certificate Expiration Date</span></h3>
<p>Finally, you can check the expiration date of your certificate to ensure that it has been renewed. You can do this by visiting your website and checking the certificate information in your browser&#8217;s security settings.</p>
<p>If you encounter any issues with the auto-renewal process, it is recommended that you reach out to the Let&#8217;s Encrypt community or consult the <a href="https://eff-certbot.readthedocs.io/en/stable/">Certbot documentation</a> for assistance.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 7: Revoking Let&#8217;s Encrypt certificates</span></h2>
<p>To revoke a Let&#8217;s Encrypt SSL certificate, you can use the <code>certbot revoke</code> command.</p>
<p>First, stop your Nginx web server:</p>
<pre><code>$ sudo systemctl stop nginx</code></pre>
<p>Run the certbot revoke command, specifying the certificate you want to revoke:</p>
<pre><code>$ sudo certbot revoke --cert-path /etc/letsencrypt/live/your-domain.com/fullchain.pem</code></pre>
<p><strong>Note:</strong> You&#8217;ll need to replace <code>/etc/letsencrypt/live/your-domain.com/fullchain.pem</code> with the actual path to your certificate file.</p>
<p>Start your web server again:</p>
<pre><code>$ sudo systemctl start nginx</code></pre>
<p>After revoking the certificate, the certificate will no longer be trusted by browsers and will no longer work for encrypting your website traffic.</p>
<p>This is useful if, for example, you need to transfer the domain to another owner or if you suspect that your private key has been compromised.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Comments and Conclusion</span></h2>
<p>That&#8217;s it. Today, you had learn how to secure Nginx with Let’s Encrypt on Ubuntu 22.04.</p>
<p>If you have any questions or feedback, feel free to leave a comment.</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-secure-nginx-with-lets-encrypt-on-ubuntu-22-04/">How To Secure Nginx with Let’s Encrypt on Ubuntu 22.04</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.linuxtuto.com/how-to-secure-nginx-with-lets-encrypt-on-ubuntu-22-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1101</post-id>	</item>
		<item>
		<title>How To Secure Apache with Let’s Encrypt on Ubuntu 22.04</title>
		<link>https://www.linuxtuto.com/how-to-install-apache-with-lets-encrypt-on-ubuntu-22-04/</link>
					<comments>https://www.linuxtuto.com/how-to-install-apache-with-lets-encrypt-on-ubuntu-22-04/#respond</comments>
		
		<dc:creator><![CDATA[LinuxTuto]]></dc:creator>
		<pubDate>Mon, 02 Jan 2023 18:30:04 +0000</pubDate>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Certbot]]></category>
		<category><![CDATA[Let's Encrypt]]></category>
		<guid isPermaLink="false">https://www.linuxtuto.com/?p=242</guid>

					<description><![CDATA[<p>Let&#8217;s Encrypt is a free, automated, and open certificate authority (CA). Let&#8217;s Encrypt offer free 90-day SSL certificates. Let’s Encrypt provide two types of certificates. The...</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-apache-with-lets-encrypt-on-ubuntu-22-04/">How To Secure Apache with Let’s Encrypt on Ubuntu 22.04</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Let&#8217;s Encrypt is a free, automated, and open certificate authority (CA). Let&#8217;s Encrypt offer free 90-day SSL certificates.</p>
<p>Let’s Encrypt provide two types of certificates. The standard single-domain SSL and the Wildcard SSL, which covers not only a single domain, but all of its subdomains too.</p>
<p>In this tutorial, we will use Certbot a free, open-source software tool for automatically issuing the Let’s Encrypt SSL Certificate and verify that your certificate is set up to renew automatically.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 1: Update Operating System</span></h2>
<p>Update your <strong>Ubuntu 22.04</strong> operating system to make sure all existing packages are up to date:</p>
<pre><code>$ sudo apt update &amp;&amp; sudo apt upgrade -y</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 2: Install Apache </span><span class="has-inline-color has-vivid-purple-color">on Ubuntu 22.04</span></h2>
<p>You can install Apache via <code>apt</code> package manager by executing the following command.</p>
<pre><code>$ sudo apt install apache2</code></pre>
<p>You can start the Apache service and configure it to run on startup by entering the following commands:</p>
<pre><code>$ sudo systemctl start apache2
$ sudo systemctl enable apache2</code></pre>
<p>Verify the status of the <code>Apache</code> service using <code>systemctl status</code> command:</p>
<pre><code>$ sudo systemctl status apache2</code></pre>
<p>Output:</p>
<pre><code>● apache2.service - The Apache HTTP Server
     Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled)
     Active: active (running)
       Docs: https://httpd.apache.org/docs/2.4/
    Process: 3170 ExecStart=/usr/sbin/apachectl start (code=exited, status=0/SUCCESS)
   Main PID: 3174 (apache2)
      Tasks: 12 (limit: 2200)
     Memory: 246.8M
        CPU: 18.104s
     CGroup: /system.slice/apache2.service
             ├─3174 /usr/sbin/apache2 -k start
             ├─3175 /usr/sbin/apache2 -k start
             ├─3176 /usr/sbin/apache2 -k start</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 3: Install Certbot </span><span class="has-inline-color has-vivid-purple-color">on Ubuntu 22.04</span></h2>
<p>Now we <a href="https://certbot.eff.org/">install the Certbot client</a> which is used to create Let’s Encrypt certificates:</p>
<pre><code>$ sudo apt install certbot python3-certbot-apache</code></pre>
<p>To verify the Certbot installation run:</p>
<pre><code>$ certbot --version</code></pre>
<p>Output:</p>
<pre><code>certbot 1.21.0</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 4: Configure Apache Web Server</span></h2>
<p>Navigate to <code>/etc/apache2/sites-available</code> directory and run the following command to create a configuration file for your installation:</p>
<pre><code class="hljs shell"><span class="hljs-meta">$</span><span class="bash"> sudo nano /etc/apache2/sites-available/your-domain.conf</span></code></pre>
<p>Add the following content:</p>
<pre><code>&lt;VirtualHost *:80&gt;

ServerAdmin webmaster@your-domain.com

ServerName your-domain.com
ServerAlias www.your-domain.com
DocumentRoot /var/www/html/

&lt;Directory /var/www/html/&gt;
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
&lt;/Directory&gt;

ErrorLog ${APACHE_LOG_DIR}/your-domain.com_error.log
CustomLog ${APACHE_LOG_DIR}/your-domain.com_access.log combined

&lt;/VirtualHost&gt;
</code></pre>
<p>Save the file and Exit.</p>
<p>Enable the Apache virtual host:</p>
<pre><code>$ sudo a2ensite your-domain.conf</code></pre>
<p>After that, restart the Apache web server.</p>
<pre><code>$ sudo systemctl restart apache2</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 5: Get the Let’s Encrypt SSL certificate</span></h2>
<p>To get the SSL certificate using the Certbot, type the command given below:</p>
<pre><code>$ sudo certbot --apache</code></pre>
<p>You will be asked to provide your valid email address and accept the term of service:</p>
<pre><code>Saving debug log to /var/log/letsencrypt/letsencrypt.log
Enter email address (used for urgent renewal and security notices)
 (Enter 'c' to cancel): <span style="color: #339966;"><strong>admin@your-domain.com
</strong></span>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Please read the Terms of Service at
https://letsencrypt.org/documents/LE-SA-v1.3-September-21-2022.pdf. You must
agree in order to register with the ACME server. Do you agree?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: <span style="color: #339966;"><strong>Y</strong></span></code></pre>
<p>Next, you’ll be asked if you want to share your email with the Electronic Frontier Foundation to receive news and other information. If you do not want to subscribe to their content, write <strong>N</strong>.</p>
<pre><code>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Would you be willing, once your first certificate is successfully issued, to
share your email address with the Electronic Frontier Foundation, a founding
partner of the Let's Encrypt project and the non-profit organization that
develops Certbot? We'd like to send you email about our work encrypting the web,
EFF news, campaigns, and ways to support digital freedom.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: <strong><span style="color: #339966;">N
</span></strong></code></pre>
<p>Next, you will be asked to select the domain on which you want to install the Let’s Encrypt SSL:</p>
<pre><code>Account registered.

Which names would you like to activate HTTPS for?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1: your-domain.com
2: www.your-domain.com
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Select the appropriate numbers separated by commas and/or spaces, or leave input
blank to select all options shown (Enter 'c' to cancel):
</code></pre>
<p>If the SSL certificate is successfully obtained, certbot displays a message to show the configuration was successful:</p>
<pre><code>IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at:
   /etc/letsencrypt/live/your-domain.com.com/fullchain.pem
   Your key file has been saved at:
   /etc/letsencrypt/live/your-domain.com/privkey.pem
   Your cert will expire on 2023-03-22. To obtain a new or tweaked
   version of this certificate in the future, simply run certbot
   again. To non-interactively renew *all* of your certificates, run
   "certbot renew"
 - Your account credentials have been saved in your Certbot
   configuration directory at /etc/letsencrypt. You should make a
   secure backup of this folder now. This configuration directory will
   also contain certificates and private keys obtained by Certbot so
   making regular backups of this folder is ideal.
 - If you like Certbot, please consider supporting our work by:

   Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
   Donating to EFF:                    https://eff.org/donate-le</code></pre>
<p>Now, you have successfully installed SSL on your website.</p>
<p>You can now open your website using <code>https://</code>, and you’ll notice a green lock icon.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Step 6: Verifying Certbot Auto-Renewal</span></h2>
<p>Let’s Encrypt certificates are valid for only ninety days. Installing Certbot will create a cronjob to renew any SSL certificate. You can run the command to check the status of the service.</p>
<pre><code>$ sudo systemctl status certbot.timer</code></pre>
<p>Output:</p>
<pre><code><span style="color: #00ff00;">●</span> certbot.timer - Run certbot twice daily
     Loaded: loaded (/lib/systemd/system/certbot.timer; enabled; vendor preset: enabled)
     Active: <span style="color: #00ff00;">active (waiting) </span>since Thu 2022-12-22 16:20:05 CDT;
    Trigger: Fri 2022-12-23 06:29:34 CST; 14h left
   Triggers: ● certbot.service</code></pre>
<p>Optionally, you can test the renewal process using the following command. The <code>–dry-run</code> flag is for simulation:</p>
<pre><code>$ sudo certbot renew --dry-run --agree-tos</code></pre>
<h2><span class="has-inline-color has-vivid-purple-color">Step 7: Revoking certificates</span></h2>
<p>If you wish to remove a certificate from your server it can be revoked using a subcommand with Let’s Encrypt client. The command below can be used to revoke a particular certificate.</p>
<pre><code>$ sudo certbot revoke --cert-path /etc/letsencrypt/live/your-domain.com/cert.pem</code></pre>
<p><strong><span style="color: #ff0000;">Note:</span></strong> Replace <code>your<em>-</em>domain.com</code><em> </em>with the domain which certificate you wish to revoke.</p>
<p>The process does not give a confirmation upon completion, but if you perform it again you will get a message that the certificate has already been revoked.</p>
<h2><span class="has-inline-color has-vivid-purple-color">Comments and Conclusion</span></h2>
<p>Congratulations! You have successfully installed the Let’s Encrypt SSL certificate on your domain.</p>
<p>If you have any questions or feedback, feel free to leave a comment.</p>
<p>The post <a href="https://www.linuxtuto.com/how-to-install-apache-with-lets-encrypt-on-ubuntu-22-04/">How To Secure Apache with Let’s Encrypt on Ubuntu 22.04</a> appeared first on <a href="https://www.linuxtuto.com">LinuxTuto</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.linuxtuto.com/how-to-install-apache-with-lets-encrypt-on-ubuntu-22-04/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">242</post-id>	</item>
	</channel>
</rss>
