rc

install-webserver.sh

1
# Install script for the web server. Run this script if install.sh has already
2
# run.
3
4
# Installing the required software
5
pacaur -S --noconfirm uwsgi-plugin-python python-django nginx-mainline openssh postgresql
6
# Starting required software
7
sudo systemctl start nginx.service
8
sudo systemctl enable nginx.service
9