Skip to content

Instantly share code, notes, and snippets.

View mohokh67's full-sized avatar
πŸ’­
Working hard, typing slow 😎😎

MoHo mohokh67

πŸ’­
Working hard, typing slow 😎😎
View GitHub Profile
##
# You should look at the following URL's in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# https://www.nginx.com/resources/wiki/start/
# https://www.nginx.com/resources/wiki/start/topics/tutorials/config_pitfalls/
# https://wiki.debian.org/Nginx/DirectoryStructure
#
# In most cases, administrators will remove this file from sites-enabled/ and
# leave it as reference inside of sites-available where it will continue to be
# updated by the nginx packaging team.
@mohokh67
mohokh67 / Install nginx, php7.1 and setup a virtual host in ubuntu.md
Last active January 23, 2018 08:10
How to install nginx, php7.1 and setup a virtual host in Ubuntu

Install Nginx and add a virtual host

  • First, make sure the Ubuntu Repo. is up to date.
sudo apt-get update
  • Check if Nginx is install in you machine:
nginx -v
@mohokh67
mohokh67 / Install Composer in Ubuntu.md
Last active February 10, 2018 13:05
Install Composer in Ubuntu

How to install composer in Ubuntu

In this short article we are going to install composer php packages manager in Ubuntu 16 and above.

  • Make sure php is installed by typing php -v in terminal. otherwise install PHP with this command:
sudo apt-get update
sudo apt-get install php