NGINX Commands (Ubuntu)

A short guide of commands I've found myself using on Ubuntu for NGINX, I'll update this post as I find more. Installing NGINX sudo apt-get update sudo apt-get install nginx Restarting NGINX To restart NGINX sudo…

NGINX Reverse Proxy for Docker

This post is a guide on setting the NGINX Config to work as a reverse proxy to our web application inside a docker container. When you use docker to host your web applications and services. It's handy to…

Setting up Docker on Linode

A quick guide to setting up Docker on a Linode Ubuntu server. As I go deeper into exploring docker and building applications and services in new ways, I wanted a post that acts as a starting point. Installing docker $ sudo…

NGINX hosting a site on Linode

I wanted to host my own personal site https://jameskenny.io on a Linode Linux server and run NGINX to host the static site. I've used Linode before and really recommend them. Also will be doing some work…

Azure Functions Routes and Proxies

Azure Function Proxies allow you to create a single unifed API surface for your Azure functions. The Microsoft Azure stack allows you to use different technologies so you can use the right tool for the job. Azure functions can also…