Created
January 11, 2021 17:19
-
-
Save LinuxlinkedBD/b99f1d467dc0df06ed36fbbadfe5ad42 to your computer and use it in GitHub Desktop.
Laravel installation with LEMP stack || A free, open-source PHP framework for Web Artisans
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 complete Laravel setup, ping me on below contacts: | |
Telegram: linuxlinked | |
email: [email protected] | |
WhatsApp: +8801720903155 | |
Skype:live:.cid.c0dc316b9d727d5e | |
YouTube: https://youtu.be/ST1fijC651w | |
######################################################################################################################################## | |
sudo apt-get update | |
sudo apt -f install | |
sudo apt autoremove | |
sudo apt -y autoclean | |
sudo apt -y clean | |
sudo apt update | |
sudo apt-get upgrade | |
sudo add-apt-repository ppa:ondrej/php | |
sudo apt-get update | |
sudo apt-get install nginx mysql-server php7.2 php7.2-xml php7.2-gd php7.2-opcache php7.2-mbstring | |
cd /var/www/ | |
sudo composer create-project laravel/laravel your-project --prefer-dist | |
sudo systemctl restart nginx | |
sudo systemctl restart mysql.service | |
sudo systemctl status php7.2-fpm.service | |
#Your Laravel installation is now complete. Browse http://localhost in your browser |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment