diff --git a/nginx-setup.sh b/nginx-setup.sh index 72ece95..cce6415 100644 --- a/nginx-setup.sh +++ b/nginx-setup.sh @@ -14,3 +14,6 @@ sudo systemctl enable nginx # Start nginx sudo systemctl start nginx + +# Status nginx +sudo systemctl status nginx \ No newline at end of file diff --git a/postgres-setup.sh b/postgres-setup.sh index 0a59fa1..c4ac705 100644 --- a/postgres-setup.sh +++ b/postgres-setup.sh @@ -10,4 +10,10 @@ sudo apt-get update sudo apt upgrade -y # Install postgres and common utils -sudo apt install postgresql postgresql-contrib -y \ No newline at end of file +sudo apt install postgresql postgresql-contrib -y + +# Enable postgres +sudo systemctl enable postgresql + +# Status nginx +sudo systemctl status postgresql \ No newline at end of file