From a759cfd1c999e237bda284f505a968da72a353e6 Mon Sep 17 00:00:00 2001 From: Mitchell Krog Date: Tue, 3 Oct 2017 15:01:10 +0200 Subject: [PATCH] ADD Nginx Mainstream Test (Step 7) --- .dev-tools/install-nginx-4.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.dev-tools/install-nginx-4.sh b/.dev-tools/install-nginx-4.sh index 23a91faca..2f285394e 100755 --- a/.dev-tools/install-nginx-4.sh +++ b/.dev-tools/install-nginx-4.sh @@ -55,14 +55,17 @@ sudo add-apt-repository -y ppa:nginx/$mainstreamnginx sudo apt-get update sudo apt-get install -y --assume-yes nginx-extras sudo nginx -V +sudo service nginx start # Find where Nginx Mainstream Installed to and Find The Service or We Have to Enable it -ls -la /etc/ +#ls -la /etc/ ls -la /etc/nginx/ sudo service nginx restart sudo service nginx reload -sudo systemctl status nginx.service +sudo systemctl status nginx.service +sudo systemctl enable nginx.service +sudo systemctl status nginx.service # ************************************** # Make Sure We Cleanup From Nginx Test 3