Skip to content

Instantly share code, notes, and snippets.

@linuxkeepup
Last active October 30, 2022 19:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxkeepup/4672e712bd3ca028ebe58ff7cba81404 to your computer and use it in GitHub Desktop.
Save linuxkeepup/4672e712bd3ca028ebe58ff7cba81404 to your computer and use it in GitHub Desktop.
Joomla Install LEMP Stack
Please send me your query for LEMP Stack support service
WhatsApp: http://tiny.cc/linuxkeepup
sudo apt update -y
sudo apt-get upgrade -y
sudo apt install build-essential checkinstall
sudo apt install ubuntu-restricted-extras
sudo apt install software-properties-common
sudo apt upgrade -o APT::Get::Show-Upgraded=true
sudo apt install apt-show-versions
sudo apt update -y
sudo apt-get upgrade -y
sudo apt update && sudo apt-get upgrade --fix-missing
sudo apt install build-essential checkinstall
sudo apt install ubuntu-restricted-extras
sudo apt update
sudo -i
add-apt-repository ppa:git-core/ppa
# Install NGINX
apt update
apt install nginx
chown -R $USER:$USER /var/www/html
chmod -R 755 /var/www/html
nginx -t
ufw app list
ufw allow 'Nginx HTTP'
ufw status
systemctl start nginx
systemctl enable nginx
systemctl daemon-reload
systemctl restart nginx
systemctl reload nginx
systemctl status nginx
apt install curl
curl -4 icanhazip.com
systemctl stop apache2
nginx -t
systemctl reload nginx
systemctl restart nginx
@linuxkeepup
Copy link
Author

Screenshot from 2022-10-29 11-49-22

@linuxkeepup
Copy link
Author

Screenshot from 2022-10-29 14-31-53

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment