Codementor Events

A beginner’s guide to creating a web server using vagrant and Nginx

Published Oct 16, 2019

A beginner's guide to creating a web server using vagrant and Nginx
This Readme contains basic info on how you can create a web server using vagrant while managing your VMs with virtual box. I'll also show you how you could sync files from your host machine to your VM(guest machines).
Vagrant Nginx server
The steps for setting up a web server such as Nginx on your guest machine are pretty straight forward
Prerequisites
Virtual box is a virtual machine manager that allows you to emulate an operating system on your computer and use it like it's running on real device hardware. You can download it here
Vagrant is a tool for managing virtual machines environments, it focuses on automation and lowers development environment setup time. Learn more about it here

Now assuming you have and Virtual box installed
Create a directory e.g vagrant_enginx_demo
Open terminal and cd into vagrant_enginx_demo
Run vagrant init this should get the directory initialized with a vagrant file, your file show looks like the image below.

Wow, that's a lot going on there! Now we're going to make changes to the config file, by uncommenting the things we need and clean up the others.
This looks more appealing, your configuration show look similar to this. I'm going to explain to you what each line does
The config.vm.box method helps vagrant identify the Operating System you want to use on your machine of which in our case is "ubuntu/trusty64"
For the network part, this is how our host sees our box(OS), so vagrant already exposes us to some high-level networking options for stuff like forwarded ports(these forwarded ports then allows you to access a port on your host machine and have all data forwarded to a port on the guest machine, over either TCP or UDP) For example: If the guest machine is running a web server listening on port 80, you can make a forwarded port mapping to port 8080 (or anything) on your host machine. You can then open your browser to localhost:8080 and browse the website, while all actual network data is being sent to the guest.
But in my case, I'm using a private network which allows you to access your guest machine by some address that is not publicly accessible from the global internet. In general, this means your machine gets an address in the private address space.
Synced folders enable Vagrant to sync a folder on the host machine to the guest machine, allowing you to continue working on your project's files on your host machine while using the resources in the guest machine to compile or run your project.
Provisioners in Vagrant allow you to automatically install software, alter configurations This is useful since boxes typically are not built perfectly for every use case. Of course, this is the reason why we're using vagrant in the first place, we don't to ssh into the box and type every installation commands for the environment running in. The "shell" provisioner allows you to upload and execute a script within the guest machine.
Run vagrant up this will download all the necessary dependencies for your VM to run successfully

Installing Nginx
Now that your Ubuntu OS is running, let's install nginx. First off, there are two ways we could install Nginx
Manual provisioning
To manually provisioning your box
You should start by runningvagrant ssh this should log you into your guess machine granting you root access so that you don't have to enter a password all the time.
Next run sudo apt update, this will update your ubuntu binaries.
Run sudo apt install nginx to install the Nginx server.
Start the nginx server by running, followed by service nginx status. You should get the following message

  • nginx is running

Or
Automating the process
Notice that on the config.vm.provision method there's a path to a file name provision.sh, this file will contain the commands we'll run once the OS is booted.
So, create a file on your root directory called provision.sh then add the following commands to it.
apt-get -y update
apt-get install -y
nginx service nginx start
This script will install and start the Nginx server.
With all that done, run vagrant up
Run vagrant ssh to ssh into your guest machine
Next run sudo service nginx status to confirm the status of your Nginx server You should get something like this

  • nginx is running
    else run vagrant provision this command will make sure the provision.sh script runs.
    Once you've successfully logged into your guess machine, verify the document root for your web server as this would be the directory for serving your apps. You can do that using this command grep "root" -R /etc/nginx/sites-enabled
    After you locate your document root, on your config.vm.synced_folder ".", "/usr/share/nginx/html" method, replace "." with the path to your project files and replace "/usr/share/nginx/html" with your nginx document root(It might be the same with mine though) Note: I've already explained what the config.vm.synced_folder does above

With all these setups, let's try to access the guest machine from our computer, goto whatever network you're using, which in my case is a private network. Your guess machine should be able to serve your files from your host.
So that's pretty much a beginner's guide to creating a web server on a vagrant.


Originally published at https://github.com.

Discover and read more posts from Jehonadab Okpukoro
get started
post commentsBe the first to share your opinion
Show more replies