Initial commit

This commit is contained in:
2024-07-13 00:53:45 +03:00
commit 00eabc8150
25 changed files with 870 additions and 0 deletions

View 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