Created
February 26, 2023 00:31
WordOps LEMP Stack Installation and Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget -qO wo wops.cc && sudo bash wo | |
# Auto completion | |
source /etc/bash_completion.d/wo_auto.rc | |
echo -e "alias wo='sudo -E wo'" >> $HOME/.bashrc | |
source $HOME/.bashrc | |
# Install stack | |
wo stack install | |
# Enable firewall and open ports | |
wo stack install --ufw | |
sudo ufw allow http | |
sudo ufw allow https | |
sudo ufw limit 22222 | |
sudo ufw limit 22 | |
sudo ufw allow 3306 | |
sudo ufw logging low | |
sudo ufw default allow outgoing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment