24 lines
427 B
Bash
Executable File
24 lines
427 B
Bash
Executable File
#!/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
|
|
|