Skip to content

Instantly share code, notes, and snippets.

@irazasyed
Created February 26, 2023 00:31
Show Gist options
  • Save irazasyed/b41f58dad9015087af43759012e0287f to your computer and use it in GitHub Desktop.
Save irazasyed/b41f58dad9015087af43759012e0287f to your computer and use it in GitHub Desktop.
WordOps LEMP Stack Installation and Configuration
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