From 24c0327649a46b670f3bb65b5383fca9f993fa4d Mon Sep 17 00:00:00 2001 From: RadinPirouz <75082987+RadinPirouz@users.noreply.github.com> Date: Mon, 6 Oct 2025 22:11:21 +0330 Subject: [PATCH] Update 12-Example-Config.md --- Web-Servers/Nginx/12-Example-Config.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Web-Servers/Nginx/12-Example-Config.md b/Web-Servers/Nginx/12-Example-Config.md index 9f9e1d6..074ce50 100644 --- a/Web-Servers/Nginx/12-Example-Config.md +++ b/Web-Servers/Nginx/12-Example-Config.md @@ -15,14 +15,14 @@ The configuration also sets headers to ensure proper client information forwardi ```nginx server { listen 80; - server_name files.usethelinux.shop; + server_name example.com; error_log /var/log/nginx/file-error.log warn; access_log /var/log/nginx/file-access.log; ``` * **listen 80;** — The server listens on HTTP port 80. -* **server_name files.usethelinux.shop;** — Responds to requests for this domain. +* **server_name example.com;** — Responds to requests for this domain. * **error_log** and **access_log** — Define custom log files for debugging and access tracking. ---