Skip to content

Instantly share code, notes, and snippets.

@LinuxlinkedBD
Created December 12, 2020 14:08
Show Gist options
  • Save LinuxlinkedBD/290320f3869bc13e1741bddfdd061260 to your computer and use it in GitHub Desktop.
Save LinuxlinkedBD/290320f3869bc13e1741bddfdd061260 to your computer and use it in GitHub Desktop.
WordPress Installation with LEMP stack
If you need complete WordPress setup, ping me on below contacts:
Telegram: linuxlinked
email: [email protected]
WhatsApp: +8801720903155
Skype:live:.cid.c0dc316b9d727d5e
YouTube: https://youtu.be/sdw8fTsGkEE
########################################################################################################################################
sudo apt update
sudo apt install nginx
sudo systemctl start nginx.service
sudo systemctl enable nginx.service
sudo systemctl restart nginx.service
sudo apt-get install mariadb-server mariadb-client
sudo systemctl start mariadb.service
sudo systemctl enable mariadb.service
sudo systemctl status mariadb.service
sudo apt install php7.0 libapache2-mod-php7.0 php7.0-common
wget -c http://wordpress.org/latest.zip
unzip latest.zip
#Now finished the Installation Process. Visit you installed site.
http://localhost/wordpress/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment