Skip to content

Instantly share code, notes, and snippets.

@LinauxTerminology
Last active April 21, 2021 08:40
Show Gist options
  • Select an option

  • Save LinauxTerminology/7ff34fe4ead09ee32d42da17c88c4b60 to your computer and use it in GitHub Desktop.

Select an option

Save LinauxTerminology/7ff34fe4ead09ee32d42da17c88c4b60 to your computer and use it in GitHub Desktop.
I Will Do Drupal cms Installation With LEMP Ubuntu 20.04
If you need Drupal CMS Setup contact with me:
Email: urmirohman218@gmail.com
Skype: https://join.skype.com/
Telegram: https://t.me/LinauxTerminology
WhatsApp: +8801408694088
Imo: +8801408694088
twiteer:https://twitter.com/LinauxTerminoal
facebook:https://www.facebook.com/LinauxTerminology
bip:01314582960
instagram:urmirohman218@gmail.com
#!/bin/sh
#Things To Do After Installing Ubuntu 20.04 LTS Desktop
sudo -i
apt update -y
apt upgrade -y
apt install build-essential checkinstall
apt install ubuntu-restricted-extras
apt install software-properties-common
add-apt-repository ppa:nilarimogard/webupd8
apt update
apt install launchpad-getkeys
launchpad-getkeys
add-apt-repository ppa:git-core/ppa
apt update
apt install git
git config --global user.name "YourName"
git config --global user.email youremail@gmail.com
apt upgrade -y
apt -f install
apt autoremove
apt -y autoclean
apt -y clean
apt update
reboot
##Install Nginx
sudo apt update
sudo apt install nginx
systemctl restart nginx
systemctl enable nginx
sudo service nginx status
sudo ufw allow OpenSSH
sudo ufw allow 'Nginx HTTP'
sudo ufw enable
sudo ufw status
sudo nano /var/www/html/index.nginx-debian.html
To save and close nano, press CTRL + X and then press y and ENTER to save changes.
# Visit: http://localhost/
@LinauxTerminology

Copy link
Copy Markdown
Author

Screenshot from 2021-04-14 02-26-25
Screenshot from 2021-04-14 02-26-38
Screenshot from 2021-04-14 02-26-46
Screenshot from 2021-04-14 02-26-53

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