How to Deploy Hapi Applications to Scaleway with Nanobox
Hapi is a rich framework for building applications and services, built on Node.js. It enables developers to focus on writing reusable application logic instead of spending time building infrastructure. Scaleway provides high-performance virtual and bare-metal servers in multiple EU-based datacenters.
In this article, I'm going to walk through deploying a Hapi application to Scaleway using Nanobox. Nanobox uses Docker to build local development and staging environments, as well as scalable, highly-available production environments on Scaleway.
Before You Begin
If you haven't already, create a free Nanobox account and download Nanobox Desktop.
Setup A Hapi Project
Prerequisite: This guide assumes you already have Node and NPM installed. If not, you can quickly install Node (which includes NPM) and return.
Where to start:
- I'm starting from scratch - Walks you through the process of installing Hapi and creating a new app.
- I'm configuring an existing app - Assumes you already have Hapi installed with an existing app.
Starting From Scratch
From the directory where you want your project to live, create a new project folder with a package.json
file and install Hapi:
# create a new project directory and change into it
mkdir nanobox-hapi && cd nanobox-hapi
# init a new project
npm init
# go through the setup guide changing any options you'd like, otherwise defaults
# are fine
# install Hapi and save it as a dependency:
npm i hapi --save
Create a file at the root of your new project called index.js
with the following:
'use strict';
const Hapi = require('hapi');
// Create a server with a host and port
const server = new Hapi.Server();
server.connection({
host: '0.0.0.0',
port: 8000
});
// Add a route
server.route({
method: 'GET',
path:'/',
handler: function (request, reply) {
return reply('Hello Nanobox!');
}
});
// Start the server
server.start((err) => {
if (err) {
throw err;
}
console.log('Server running at:', server.info.uri);
});
Configure Your App
Nanobox uses a simple yaml config file called the boxfile.yml
to build and configure your app's environment.
Add a boxfile.yml
Create a boxfile.yml
in the root of your project with the following:
run.config:
engine: nodejs
extra_packages:
- nginx
web.main:
start:
nginx: nginx -c /app/etc/nginx.conf
hapi: node index.js
data.db:
image: nanobox/postgresql:9.5
NOTE: You may need to modify some boxfile configurations specific to your project (such as the database). You'll find more info on this in the docs and guides.
Test Your App Locally (optional)
Nanobox comes with a local development environment that allows you to run your app locally before you deploy it.
# (optional) add a DNS alias to access your app from the browser
nanobox dns add local hapi.local
# start your app
nanobox run node index.js
If you added a DNS alias, access your app at hapi.local:8000. If not, access it via the IP provided in the console after you've started your server.
Whenever you exit out of the Nanobox console, it'll shut down your VM and drop you back into your host OS.
Configure Hapi
IMPORTANT: There are three important pieces of configuration that every application must have:
- Your app must bind to all IP's (0.0.0.0). Why?
- Your app must listen on port 8080. Why?
- Your app must use environment variables (evars) to connect to Nanobox services. Why?
Find your server and update it to bind to all IP's:
server.connection({
host: '0.0.0.0',
port: 8000
});
Update the Database Connection
When Nanobox spins up a database, it generates environment variables (evars) for the necessary connection credentials.
Hapi is pretty free-form when it comes to configuring a database connection. However you choose to configure yours, you can access the following evars:
process.env.DATA_DB_HOST
process.env.DATA_DB_USER
process.env.DATA_DB_PASS
The following is an example database configuration using Postgres:
Install a Database Adapter
# install your database adapter (in this case postgres) and save it as a dependency
npm i pg-promise --save
NOTE: If you're using a different database (such as MongoDB) you'll need to install the corresponding adapter.
Create a Database Connection
const host = process.env.DATA_DB_HOST
const user = process.env.DATA_DB_USER
const pass = process.env.DATA_DB_PASS
const pgp = require('pg-promise')(/*options*/)
const db = pgp(`postgres://${user}:${pass}@${host}:5432/database`)
This is a very simple example of a database connection. The actual details will be up to you, based on the requirements of your application.
NOTE: Nanobox provides a default database named gonano
, but you're welcome to create your own. Also, Nanobox will always use a service's default port when trying to connect. So in this example use 5432
, Postgres' default.
Configure Nginx (optional)
It's recommended to use an Nginx reverse proxy to serve static assets. Most Node frameworks are compiled and served static.
Create an etc/nginx.conf
in your project with the following contents:
worker_processes 1;
daemon off;
events {
worker_connections 1024;
}
http {
include /data/etc/nginx/mime.types;
sendfile on;
gzip on;
gzip_http_version 1.0;
gzip_proxied any;
gzip_min_length 500;
gzip_disable "MSIE [1-6]\.";
gzip_types text/plain text/xml text/css
text/comma-separated-values
text/javascript
application/x-javascript
application/atom+xml;
# Proxy upstream to hapi
upstream hapi {
server 127.0.0.1:8000;
}
# Configuration for Nginx
server {
# Listen on port 8080
listen 8080;
# Settings to serve static files
location ^~ /static/ {
root /app/;
}
# Serve a static file (ex. favico)
# outside /static directory
location = /favico.ico {
root /app/favico.ico;
}
# Proxy connections to hapi
location / {
proxy_pass http://hapi;
proxy_redirect off;
proxy_set_header Host $host;
}
}
}
That's it! On to the main event, deploying your application!
Setup Your Scaleway Account
If you haven't already, create a Scaleway account. In your Scaleway dashboard, click on your user in the upper-right corner and go to "Credentials".
Once there, click the "Create new token" button.
Copy and store your Access Key and your new Token.
Create a New Provider Account
In your Nanobox dashboard, go to the Hosting Accounts section of your account admin and click "Add Account", select Scaleway, and click "Proceed".
Enter your Scaleway access key and API token.
Click "Verify & Proceed". Name your provider, select your default region, then click "Finalize/Create".
Launch a New App
Go to the home page of your Nanobox dashboard and click the "Launch New App" button. Select your Scaleway provider from the dropdown and choose the region in which you'd like to deploy your app.
Confirm and click "Let's Go!" Nanobox will order an server on Scaleway under your account. When the server is up, Nanobox will provision platform components necessary for your app to run:
- Load-Balancer: The public endpoint for your application. Routes and load-balances requests to web nodes.
- Monitor: Monitors the health of your server(s) and application components.
- Logger: Streams and stores your app's aggregated log stream.
- Message Bus: Sends app information to the Nanobox dashboard.
- Warehouse: Storage used for deploy packages, backups, etc.
Once all the platform components are provisioned and running, you're ready to deploy your app.
Stage Your App Locally
Nanobox provides "dry-run" functionality that simulates a full production deploy on your local machine. This step is optional, but recommended. If the app deploys successfully in a dry-run environment, it will work when deployed to your live environment.
nanobox deploy dry-run
More information about dry-run environments is available in the Dry-Run documentation.
Deploy
Add Your New App as a Remote
From the root of your project directory, add your newly created app as a remote.
nanobox remote add app-name
This connects your local codebase to your live app. More information about the remote
command is available in the Nanobox Documentation.
Deploy to Your Live App
With your app added as a remote, you're ready to deploy.
nanobox deploy
Nanobox will compile and package your application code, send it up to your live app, provision all your app's components inside your live server, network everything together, and voilà! Your app will be live.
Manage & Scale
Once your app is deployed, Nanobox makes it easy to manage and scale your production infrastructure. In your Nanobox dashboard you'll find health metrics for all your app's servers/containers. Your application logs are streamed in your dashboard and can be streamed using the Nanobox CLI.
Although every app starts out on a single server with containerized components, you can break components out into individual servers and/or scalable clusters through the Nanobox dashboard. Nanobox handles the deep DevOps stuff so you don't have to. Enjoy!
Get in Touch
Additional Links
- boxfile.yml Documentation
- Scaling Documentation
- Live App Management
- General Documentation
- Language & Framework Guides
FAQ
Why 0.0.0.0
Nanobox uses Docker to containerize your application within its own private network. Using 127.0.0.1
or localhost
(the "loopback" IP) inside of a container will loopback to the container, not the host machine. In order for requests to reach your application, your application needs to listen on all available IP's.
Why Port 8080
Nanobox provides your application with a router that directs traffic through a private network created for your app. The router listens on ports 80 and 443, terminates SSL, and forwards all requests to port 8080.
Note: Your app/framework can listen on a port other than 8080, but you will need to implement a proxy that listens on 8080 and forwards to your custom port.
Why Use Environment Variables
Environment variables serve two purposes:
-
They obscure sensitive information in your codebase. Environment variables referenced in your code are populated at runtime, keeping potentially sensitive values out of your codebase.
-
Due to the dynamic nature of containerized applications, it's hard to predict the host IP of running services. These IP's are subject to change as your infrastructure changes. When creating your infrastructure, Nanobox knows what these values are and creates evars for necessary connection details.
Subscribe to Nanobox
Get the latest posts delivered right to your inbox