From febac5c7d56498e4bd0ee37b42113485e3f4b134 Mon Sep 17 00:00:00 2001 From: Anon Date: Fri, 19 May 2023 15:58:37 -0700 Subject: [PATCH] Corrected systemctl command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 751eebe..b43fd72 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Edit `/etc/nginx/nginx.conf` and make sure you append the below line at the end include sites-enabled/*; ``` -When done, run `nginx -t` as root to make sure the configuration is good, and then start nginx `systemctl start --now nginx.service` or restart if it's already running `systemctl restart nginx.service` +When done, run `nginx -t` as root to make sure the configuration is good, and then start nginx `systemctl enable --now nginx.service` or restart if it's already running `systemctl restart nginx.service` Visit your website in a browser to make sure everything is working correctly.