Last active
April 21, 2021 08:40
-
-
Save LinauxTerminology/7ff34fe4ead09ee32d42da17c88c4b60 to your computer and use it in GitHub Desktop.
I Will Do Drupal cms Installation With LEMP Ubuntu 20.04
This file contains hidden or 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
| 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
commented
Apr 14, 2021
Author




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