remove deprecated nginx configs

This commit is contained in:
geoffrey45
2022-05-10 13:15:59 +03:00
parent bee37742c3
commit 8dfa6834ad
4 changed files with 0 additions and 19 deletions
-3
View File
@@ -1,3 +0,0 @@
server { listen 8901;
location / { root /home/cwilvx/; autoindex on; sendfile off; } }
-3
View File
@@ -1,3 +0,0 @@
server { listen 8900;
location /images/ { root /home/cwilvx/.musicx/; autoindex on; sendfile on; } }
-5
View File
@@ -1,5 +0,0 @@
# 1. copy sites configs
# 2. create symbolic links for each file in sites-available to sites-enable
sudo cp ./nginx-sites/* /etc/nginx/sites-available
sudo ln -s /etc/nginx/sites-available/* /etc/nginx/sites-enabled -f
-8
View File
@@ -1,6 +1,3 @@
# 1. install nginx
# 2. install mongodb
# commands to install and start mongodb ubuntu 20.04
wget -qO - https://www.mongodb.org/static/pgp/server-5.0.asc | sudo apt-key add -
sudo apt-get install gnupg
@@ -12,8 +9,3 @@ sudo apt-get install -y mongodb
sudo systemctl start mongodb
sudo systemctl daemon-reload
sudo systemctl enable mongodb
# commands to install and start nginx ubuntu 20.04
sudo apt-get install nginx
sudo systemctl start nginx
sudo systemctl enable nginx