X
Collapse
-
How to Install Nginx on Ubuntu 24.04
Nginx stands out for its higher performance and scalability among the available web servers. Nginx is open-source, and you can use it for different activities on your Linux system. In Ubuntu 24.04, you can install Nginx by sourcing it from the default repository. Once installed, configure your firewall and start using Nginx. This post shares the details of every step you should take. Read on!
Step-by-Step Guide to Install Nginx on Ubuntu 24.04
To install Nginx, ensure you have access to your system with sudo privileges and access to the terminal. With that, the steps below will guide you through everything you should do to install and configure your firewall to start using Nginx. Follow along!
Step 1: Update the Repository
in Ubuntu 24.04, Nginx is available in its default repository. As such, you won’t have to add its repository. Before installing this Nginx version, let’s ensure we get the latest version by updating the package index.
$ sudo apt update
Step 2: Install Nginx via APT
After refreshing the Ubuntu repository, execute the install command below to fetch and install the Nginx package. Ensure you confirm the prompt.
$ sudo apt install nginx
Confirm that Nginx has been installed by running the below command to display the installed version.
$ nginx -version
We’ve installed Nginx 1.24.0.
Step 3: Enable and Start the Nginx Service
Before we can use Nginx, we must start the Nginx service. Instead of starting it every time you want to use it, setting Nginx to start at boot time is better. To do so, enable the Nginx service and restart Nginx using the commands below.
$ sudo systemctl enable nginx
$ sudo systemctl restart nginx
Next, check the Nginx service to ensure that it’s active (running).
$ sudo systemctl status nginx
Step 4: Configure the Firewall
Although the firewall automatically detects Nginx and allows its connection, we must ensure it registers it. You can also specify a different rule to use with Nginx.
For this guide, we don’t want to give Nginx full access. Instead, let’s specify that we only want to connect via HTTP. To save this configuration, execute the following command.
$ sudo ufw allow ‘Nginx HTTP’
You can also give it HTTPS access, or if you want to allow HTTP and HTTPS, create a Nginx Full rule.
With our rule added successfully, let’s view the firewall status to verify further that we have our rule added correctly. Check the firewall status using the command below.
$ sudo ufw status
Step 5: Verify Nginx Works
A quick way of confirming that your Nginx installation was a success is by opening the Nginx landing page. You can do this in two ways. The first option involves opening your web browser and accessing your web page. For instance, if using localhost, we would open the site: http://localhost
You will get an Nginx welcome page confirming that Nginx is all set and ready for use.
Alternatively, you can visit the same web page using curl and check the output. If the output shows the same welcome message, your installation was successful.
$ curl 127.0.0.1
Conclusion
Nginx is an open-source web server that can be installed and used on Ubuntu 24.04. The Nginx package is available from the Ubuntu repository. To install it, use APT. Next, configure your firewall to allow traffic via Nginx. We’ve discussed each step, and with this guide as a reference, you can install Nginx on Ubuntu 24.04.
More...Tags: None
Posting comments is disabled.
Categories
Collapse
Article Tags
Collapse
There are no tags yet.
Latest Articles
Collapse
-
by Kasimba
by George Whittaker
Introduction
Qualitative data analysis (QDA) is a cornerstone of research across various fields, from social sciences to marketing. It involves uncovering patterns, themes, and meanings within non-numerical data such as interviews, focus groups, and textual narratives. In this era of digital tools, MAXQDA stands out as a premier software solution for QDA, empowering researchers to organize...-
Channel: Articles
11-21-2024, 11:31 PM -
-
by Kasimba
by german.suarez
Introduction
In today’s fast-paced digital landscape, ensuring the availability and performance of applications is paramount. Modern infrastructures require robust solutions to distribute traffic efficiently and maintain service availability even in the face of server failures. Enter HAProxy, the de facto standard for high-performance load balancing and failover.
This article...-
Channel: Articles
11-21-2024, 03:00 PM -
-
by KasimbaArch Linux hasn't had a license for any package sources (such as PKGBUILD files) in the past, which is potentially problematic. Providing a license will preempt that uncertainty.
In RFC 40 we agreed to change all package sources to be licensed under the very liberal 0BSD license. This change will not limit what you can do with package sources. Check out the RFC for more on the rationale and prior discussion.
Before we make this change, we will provide contributors with...-
Channel: Articles
11-19-2024, 09:21 AM -
-
by Kasimba
by George Whittaker
Introduction
In the world of cybersecurity and software development, binary analysis holds a unique place. It is the art of examining compiled programs to understand their functionality, identify vulnerabilities, or debug issues—without access to the original source code. For Linux, which dominates servers, embedded systems, and even personal computing, the skill of binary analysis is...-
Channel: Articles
11-18-2024, 07:10 PM -
-
by KasimbaDebian and Ubuntu are two popular Linux distributions. In this deep dive we will guide you on the key differences between them from perspective of both corporate enterprise and personal productivity or pleasure usage. After reading this blog post you should be in a better position to decide to select Ubuntu or Debian.
Stewardship, Licensing, Community and Cost
Where as Debian is 100% fully committed to free software as defined by the Debian Free Software Guidelines, Ubuntu is created...-
Channel: Articles
11-17-2024, 08:30 PM -
-
by Kasimba
by George Whittaker
Introduction
In the digital age, data loss is a critical concern, and effective backup and recovery systems are vital for any Debian system administrator or user. Debian, known for its stability and suitability in enterprise, server, and personal computing environments, offers a multitude of tools for creating robust backup and recovery solutions. This guide will explore these solutions,...-
Channel: Articles
11-13-2024, 05:30 PM -