heidloff.net - Building is my Passion
Post
Cancel

Deploying Nginx on OpenShift

Many web applications use Nginx as web server to host web resources like HTML and JavaScript. This article describes a mechanism to deploy Nginx on OpenShift, the Kubernetes distribution for enterprises.

OpenShift extends Kubernetes with additional capabilities. While Kubernetes is like an engine, OpenShift is like a car with everything you need to drive. In order to run enterprise workloads and workloads in regulated industries, it comes with additional security features and rules. One of these rules is not to run containers as root.

Here is a quick example that shows how to run and configure Nginx following OpenShift’s rules. First you need a Dockerfile like this:

1
2
3
4
5
6
7
8
9
10
11
12
13
FROM node:lts-alpine as BUILD
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build

FROM nginx:1.17
COPY nginx-os4.conf /etc/nginx/nginx.conf
WORKDIR /code
COPY --from=BUILD /usr/src/app/dist .
EXPOSE 8080:8080
CMD ["nginx", "-g", "daemon off;"]

Next define a nginx.conf configuration file.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# nginx.conf
worker_processes auto;
pid /tmp/nginx.pid;
events {
 worker_connections 1024;
}

http {
 include /etc/nginx/mime.types; 
 client_body_temp_path /tmp/client_temp;
 proxy_temp_path       /tmp/proxy_temp_path;
 fastcgi_temp_path     /tmp/fastcgi_temp;
 uwsgi_temp_path       /tmp/uwsgi_temp;
 scgi_temp_path        /tmp/scgi_temp;

 server {
   listen 8080;
   charset utf-8;
   sendfile on;
   server_name _;
   index index.html;
   error_log  /tmp/error.log;
   access_log /tmp/access.log;
   location / {
     root /code;
     expires -1;
     add_header Pragma "no-cache";
     add_header Cache-Control "no-store, no-cache, must-revalidate, post-check=0, pre-check=0";
     try_files $uri /index.html = 404;
   }
 }
}

After this web applications can be deployed via the following commands. Check out the sample Vue.js application and the configuration yaml file. After the build the resources are stored in the ‘dist’ directory.

1
2
3
4
5
$ cd web-app-root-directory
$ oc new-build --name build-storefront-mf-navigator --binary --strategy=docker
$ oc start-build build-storefront-mf-navigator --from-dir=. --follow
$ oc apply -f deployment/kubernetes.yaml
$ oc expose svc/storefront-mf-navigator

image

What’s next?

If you want to see these mechanisms in action, check out my sample application. There is also a good blog Deploy VueJS applications on OpenShift on Red Hat Developer.

Featured Blog Posts
Disclaimer
The postings on this site are my own and don’t necessarily represent IBM’s positions, strategies or opinions.
Trending Tags