Nginxのインストールとセットアップ
さまざまなオペレーティングシステムにNginxをインストールし、初期設定を行う方法を学習します。
「Nginxのインストールとセットアップ」はCoddyKit上の無料API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)レッスンです。 これはレッスン1/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはAPI Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)コースには全4レッスンが含まれています。
このレッスンの一部はまだ翻訳されておらず、英語で表示されています。
Get Ready to Install Nginx
Welcome! In this lesson, we'll get Nginx up and running on your system. Nginx (pronounced "engine-x") is a powerful web server and reverse proxy that's widely used for high-performance applications.
We'll cover installation on common operating systems and explore its initial setup.
Installing on Linux (APT)
For Debian or Ubuntu Linux, Nginx is readily available through the APT package manager. These commands will update your package list and install Nginx:
sudo apt updatesudo apt install nginx
The sudo command grants administrative privileges, necessary for system-wide changes.
sudo apt update
sudo apt install nginxCheck Nginx is Running
After installation, Nginx usually starts automatically. You can verify its status using systemctl, a command for controlling system services.
A successful output will show "active (running)". Try running this:
sudo systemctl status nginxManaging Nginx Service
Knowing how to control the Nginx service is crucial. Here are the most common commands you'll use:
- Start:
sudo systemctl start nginx - Stop:
sudo systemctl stop nginx - Restart:
sudo systemctl restart nginx(stops and then starts) - Reload:
sudo systemctl reload nginx(applies config changes without dropping connections)
Where to Find Configs
Nginx configurations live in specific directories. On Linux systems, the main configuration file is usually located at /etc/nginx/nginx.conf.
This main file often includes other configuration files from the /etc/nginx/sites-available/ directory. These are then symlinked (a type of shortcut) to /etc/nginx/sites-enabled/ to activate them.
Your First Nginx Page
Once Nginx is running, open your web browser and navigate to http://localhost/ or your server's IP address. You should see a default "Welcome to Nginx!" page.
This page confirms Nginx is serving content correctly from its default web root, which is typically /var/www/html.
How Nginx Listens
By default, Nginx listens for incoming web requests on port 80 (the standard HTTP port). This is configured in the nginx.conf file or included server blocks.
You can verify which ports Nginx is listening on using the ss command (Socket Statistics). Try running this example:
sudo ss -ltn | grep 80Installation on macOS
For macOS users, Homebrew is the easiest way to install Nginx. Homebrew is a popular package manager for macOS.
First, ensure Homebrew is installed. Then, use the brew command to install Nginx and start its service:
brew install nginx
brew services start nginxInstallation Check
Let's test your understanding of basic Nginx service commands.
Recap: Nginx is Installed!
Great job! You've successfully learned how to install Nginx on both Linux and macOS, verify its status, and manage the service with basic commands.
We also touched upon where Nginx stores its configuration files and how to confirm it's serving the default page. In the next lesson, we'll dive into the basic Nginx configuration file structure!
よくある質問
「Nginxのインストールとセットアップ」レッスンは無料ですか?
はい。「Nginxのインストールとセットアップ」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)コースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)コースには全4レッスンが含まれています。
「Nginxのインストールとセットアップ」で何を学びますか?
さまざまなオペレーティングシステムにNginxをインストールし、初期設定を行う方法を学習します。 ブラウザで直接実行するハンズオンコードでAPI Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)を演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。
API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)を始めるのに経験は必要ですか?
事前経験は必要ありません。CoddyKitのAPI Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)は初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン1/4です。
「Nginxのインストールとセットアップ」レッスンにはどのくらい時間がかかりますか?
ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。
このAPI Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)レッスンでコードを書いて実行できますか?
はい。すべてのAPI Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)レッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。
このコースのすべてのレッスン
- Nginxのインストールとセットアップ
- Nginxの基本設定
- Nginxで静的コンテンツを配信する
- Nginxのlocationブロックとリクエストマッチング