Setting up root CA.
- ROOT KEY
- Self Signed ROOT CERTIFICATE
Create a crt/key for a domain
- Create Key
- Using the key to generate a CSR
//import express from 'express' | |
import https from 'https' | |
import { Nuxt, Builder } from 'nuxt' | |
import bodyParser from 'body-parser' | |
import fs from 'fs' | |
import api from './api' | |
const key = fs.readFileSync('certificates/private.key'); |
-bash-4.2$ helm history 'app2-test-app-stage-bf1-testeiddccfllhlegfknfreebbikbfhhbkufuejlhbcrrtvn' | |
E0315 01:43:54.575161 5353 portforward.go:209] Unable to create listener: Error listen tcp6 [::1]:6120: bind: cannot assign requested address | |
REVISION UPDATED STATUS CHART DESCRIPTION | |
1 Mon Feb 27 22:12:06 2017 DELETED nginx-test-0.2.0 Deletion complete | |
1 Tue Feb 28 21:44:53 2017 DEPLOYED nginx-user1-0.1.1 Install complete | |
1 Tue Feb 28 21:45:14 2017 SUPERSEDED nginx-user1-0.1.1 Release "broken-lion" failed: deployments.extensions "ngi... | |
1 Thu Jan 12 01:27:17 2017 DEPLOYED app1-fe-1.0.656.188080852-165164_200 | |
1 Fri Feb 17 18:58:59 2017 DEPLOYED app1-site-1.0.918.193280979-165164_430 | |
1 Tue Feb |
var biodata = function(firstName, secondName){ | |
//Public members:: | |
this.firstName = firstName; | |
this.secondName = secondName; | |
//This is an assignment which takes the present context and assigns it to another variable, in this case that | |
var that = this; | |
//private members: | |
var sex = "Male"; |
var biodata = function(firstName, secondName){ | |
//Public members:: | |
this.firstName = firstName; | |
this.secondName = secondName; | |
var that = this; | |
//private members: | |
var sex = "Male"; | |
var relationshipStatus = "in a relationship"; |
var biodata = function(firstName, secondName){ | |
//Public members:: | |
this.firstName = firstName; | |
this.secondName = secondName; | |
var that = this; | |
//private members: | |
var sex = "Male"; | |
var relationshipStatus = "in a relationship"; |