From 761bdc8904c731635c2285f0a5c834f6c99ab16c Mon Sep 17 00:00:00 2001 From: radinpirouz Date: Thu, 7 Nov 2024 15:56:05 +0330 Subject: [PATCH] Nginx: Update Reverse Proxy --- Nginx/4-Reverse-Proxy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Nginx/4-Reverse-Proxy.md b/Nginx/4-Reverse-Proxy.md index 39e20b5..440c72a 100644 --- a/Nginx/4-Reverse-Proxy.md +++ b/Nginx/4-Reverse-Proxy.md @@ -77,7 +77,7 @@ A reverse proxy can forward client requests to multiple backend servers, helping 3. **Reload Nginx** to apply the changes: ```bash - sudo systemctl reload nginx + nginx -s reload ``` ---