<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Erik Thiart</title>
    <description>The latest articles on DEV Community by Erik Thiart (@erikthiart).</description>
    <link>https://dev.to/erikthiart</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F87332%2Fae286ea1-05ca-468b-a57a-78a86fa2a4cb.png</url>
      <title>DEV Community: Erik Thiart</title>
      <link>https://dev.to/erikthiart</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/erikthiart"/>
    <language>en</language>
    <item>
      <title>I created my first #PHP video series</title>
      <dc:creator>Erik Thiart</dc:creator>
      <pubDate>Fri, 03 Jan 2020 22:57:33 +0000</pubDate>
      <link>https://dev.to/erikthiart/i-created-my-first-php-video-series-5g5i</link>
      <guid>https://dev.to/erikthiart/i-created-my-first-php-video-series-5g5i</guid>
      <description>&lt;p&gt;I created an in depth #PHP video series (available for free) &lt;a href="https://youtu.be/bCmLkXQNnAA"&gt;https://youtu.be/bCmLkXQNnAA&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I would greatly appreciate feedback on how to improve the format. I never realized how difficult it is to talk and type at the same time. &lt;/p&gt;

</description>
      <category>php</category>
      <category>mysql</category>
      <category>pdo</category>
      <category>youtube</category>
    </item>
    <item>
      <title>How to install Let's Encrypt on Apache running Ubuntu 16.04</title>
      <dc:creator>Erik Thiart</dc:creator>
      <pubDate>Thu, 26 Jul 2018 10:54:37 +0000</pubDate>
      <link>https://dev.to/erikthiart/how-to-install-lets-encrypt-on-apache-running-ubuntu-1604-1pj1</link>
      <guid>https://dev.to/erikthiart/how-to-install-lets-encrypt-on-apache-running-ubuntu-1604-1pj1</guid>
      <description>&lt;p&gt;Install&lt;br&gt;
On Ubuntu systems, the Certbot team maintains a PPA. Once you add it to your list of repositories all you'll need to do is apt-get the following packages.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo apt-get update
$ sudo apt-get install software-properties-common
$ sudo add-apt-repository ppa:certbot/certbot
$ sudo apt-get update
$ sudo apt-get install python-certbot-apache
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Get Started&lt;br&gt;
Certbot has a fairly solid beta-quality Apache plugin, which is supported on many platforms and automates certificate installation.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo certbot --apache
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Running this command will get a certificate for you and have Certbot edit your Apache configuration automatically to serve it. If you're feeling more conservative and would like to make the changes to your Apache configuration by hand, you can use the certonly subcommand:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo certbot --apache certonly
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Automating renewal&lt;br&gt;
The Certbot packages on your system come with a cron job that will renew your certificates automatically before they expire. Since Let's Encrypt certificates last for 90 days, it's highly advisable to take advantage of this feature. You can test automatic renewal for your certificates by running this command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo certbot renew --dry-run
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ssl</category>
      <category>ubuntu</category>
      <category>security</category>
      <category>linux</category>
    </item>
    <item>
      <title>How to install Let's Encrypt on Nginx running Ubuntu 16.04</title>
      <dc:creator>Erik Thiart</dc:creator>
      <pubDate>Thu, 26 Jul 2018 10:51:28 +0000</pubDate>
      <link>https://dev.to/erikthiart/how-to-install-lets-encrypt-on-nginx-running-ubuntu-1604-3jl1</link>
      <guid>https://dev.to/erikthiart/how-to-install-lets-encrypt-on-nginx-running-ubuntu-1604-3jl1</guid>
      <description>&lt;p&gt;Install&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo apt-get update
$ sudo apt-get install software-properties-common
$ sudo add-apt-repository ppa:certbot/certbot
$ sudo apt-get update
$ sudo apt-get install python-certbot-nginx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Get Started&lt;br&gt;
Certbot has a Nginx plugin, which is supported on many platforms, and certificate installation.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo certbot --nginx
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If you're feeling more conservative and would like to make the changes to your Nginx configuration by hand, you can use the certonly subcommand:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo certbot --nginx certonly
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Automating renewal&lt;br&gt;
The Certbot packages on your system come with a cron job that will renew your certificates automatically before they expire. Since Let's Encrypt certificates last for 90 days, it's highly advisable to take advantage of this feature. You can test automatic renewal for your certificates by running this command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ sudo certbot renew --dry-run
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>ssl</category>
      <category>ubuntu</category>
      <category>apache</category>
      <category>nginx</category>
    </item>
  </channel>
</rss>
