Skip to content

Instantly share code, notes, and snippets.

View melcma's full-sized avatar

Adrian melcma

  • Leicester
View GitHub Profile
@melcma
melcma / LumenNginxUbuntu
Last active November 18, 2023 16:22
Lumen + Nginx + Ubuntu
cd ~
sudo apt-get update
1. Install PHP and Nginx
#apt-get install software-properties-common
sudo apt-get -y install nginx php7.0 php7.0-fpm php7.0-mbstring php7.0-xml git composer
2. Config Nginx
@melcma
melcma / Laravel PHP7 LEMP AWS.md
Last active November 17, 2018 20:56 — forked from santoshachari/Laravel PHP7 LEMP AWS.md
Laravel 5.x on Ubuntu 14.x, PHP 7.x, Nginx 1.9.x

This tutorial is the improvised verision of this tutorial on Digitalocean based on my experience.

Install PHP 7 on Ubuntu

Run the following commands in sequence.

sudo apt-get update
sudo apt-get install -y php7.0 php7.0-fpm php7.0-gd
sudo apt-get install nginx git