Skip to content

Instantly share code, notes, and snippets.

View mehdi89's full-sized avatar
💭
looking for new opportunities

Mehedi Hasan mehdi89

💭
looking for new opportunities
  • TubeOnAI
  • Dhaka, Bangladesh
  • 13:37 (UTC -12:00)
View GitHub Profile
@mehdi89
mehdi89 / 01 Installing nginx, php, composer and laravel dependencies into ubuntu server
Last active March 31, 2021 16:06
Deploying simple Laravel Application in AWS with Nginx
sudo add-apt-repository ppa:nginx/stable -y
sudo add-apt-repository ppa:ondrej/php -y
sudo apt update
sudo apt-get install nginx -y
sudo apt-get install zip unzip php7.4 php7.4-mysql php7.4-fpm php7.4-xml php7.4-gd php7.4-opcache php7.4-mbstring php7.4-zip -y
#install composer
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer