Initial commit
This commit is contained in:
23
servers/deployment/scripts/install_packages.sh
Executable file
23
servers/deployment/scripts/install_packages.sh
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Update package lists
|
||||
sudo apt update
|
||||
|
||||
# Install Supervisor
|
||||
sudo apt install supervisor -y
|
||||
|
||||
# Install Nginx
|
||||
sudo apt install nginx -y
|
||||
|
||||
# Install redis
|
||||
sudo apt install redis -y
|
||||
|
||||
# Install certbot
|
||||
sudo apt install python3-certbot-nginx -y
|
||||
|
||||
# Install uWSGI and its dependencies
|
||||
sudo apt install uwsgi build-essential python3-dev -y
|
||||
|
||||
# Install the Python 3 plugin for uWSGI
|
||||
sudo apt install uwsgi-plugin-python3 -y
|
||||
|
||||
Reference in New Issue
Block a user