start new:
tmux
start new with session name:
tmux new -s myname
| #!/bin/bash | |
| # This script is meant to be run on a fresh Ubuntu 24.04 LTS installation. | |
| # Tired of manually installing LEMP stack on Ubuntu? This script will do it for you. | |
| # | |
| # Optionally, This script restores a server from a backup. It assumes the following directory structure: | |
| # - backup/ | |
| # - nginx/ (contains nginx configuration files) | |
| # - db/ (contains .sql files for database restoration) | |
| # - sites.zip (zipped file containing site files) |