<?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>Forem: joeydanielsdev</title>
    <description>The latest articles on Forem by joeydanielsdev (@joeydanielsdev).</description>
    <link>https://forem.com/joeydanielsdev</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%2F1235202%2Fc3fa54a9-df64-4300-a0fe-602e1d49328c.png</url>
      <title>Forem: joeydanielsdev</title>
      <link>https://forem.com/joeydanielsdev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/joeydanielsdev"/>
    <language>en</language>
    <item>
      <title>SETTING UP NGINX SERVER ON UBUNTU</title>
      <dc:creator>joeydanielsdev</dc:creator>
      <pubDate>Sat, 01 Feb 2025 08:59:26 +0000</pubDate>
      <link>https://forem.com/joeydanielsdev/setting-up-nginx-server-on-ubuntu-2e7f</link>
      <guid>https://forem.com/joeydanielsdev/setting-up-nginx-server-on-ubuntu-2e7f</guid>
      <description>&lt;ul&gt;
&lt;li&gt;I installed deployed Ubuntu VPS on AWS EC2 and connected to it&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo73ijfzpufv39spxbf9s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fo73ijfzpufv39spxbf9s.png" alt="Image description" width="800" height="100"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqxznbr2g9mepvgx6ne5p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqxznbr2g9mepvgx6ne5p.png" alt="Image description" width="800" height="304"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Opened Ubuntu terminal and ran commands to install NGINX&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;sudo apt update&lt;br&gt;
sudo apt install nginx&lt;br&gt;
sudo ufw app list &lt;br&gt;
sudo ufw allow 'Nginx HTTP'&lt;br&gt;
sudo ufw status&lt;br&gt;
systemctl status nginx_&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6q6l365lkqhufy8wgm7j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6q6l365lkqhufy8wgm7j.png" alt="Image description" width="800" height="535"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Navigate to edit the default Ubuntu Debian html file to my desired text using sudo nano command as it is a protected file&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;sudo systemctl reload nginx&lt;br&gt;
cd /var/www/html&lt;br&gt;
sudo nano index.nginx-debian.html&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Restart Nginx using &lt;em&gt;$sudo systemctl start nginx&lt;/em&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmyo2mph0c4ud7omtgfir.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmyo2mph0c4ud7omtgfir.png" alt="Image description" width="800" height="531"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Reference&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

- https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-20-04
- https://chat.deepseek.com/

- https://hng.tech/hire/devops-engineers
- https://hng.tech/hire/cloud-engineers



&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>nginx</category>
      <category>ubuntu</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
