Initial commit

This commit is contained in:
Robert Partridge 2022-07-13 17:04:23 -04:00
parent 0582496b2f
commit 6cba6237c9
1 changed files with 19 additions and 0 deletions

19
setup-nginx-proxy.sh Normal file → Executable file
View File

@ -0,0 +1,19 @@
#!/bin/bash
# Root Permissions Check
echo
if [ "$EUID" -ne 0 ]
then echo "PLEASE RUN THIS SCRIPT WITH ROOT PRIVILEGES"
exit
fi
# Update System
apt update && apt upgrade -y && apt autoremove -y && apt clean
# Install Packages
apt install nginx git
# Retrieve Config Files
# Setup Complete