ibmjstart/bluemix-letsencrypt

Name: bluemix-letsencrypt

Owner: IBM jStart

Description: Let's Encrypt wrapper for Cloud Foundry apps on IBM Bluemix

Forked from: bsyk/cf-letsencrypt

Created: 2016-07-29 22:01:43.0

Updated: 2018-01-05 06:18:41.0

Pushed: 2017-11-12 19:58:25.0

Homepage:

Size: 30

Language: Python

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

bluemix-letsencrypt

A script for configuring Let's Encrypt SSL certificates for CloudFoundry apps on IBM Cloud (formerly known as Bluemix).

Using the --path argument of the cf map-route command, you can configure a specific path to be directed to a separate app. The benefit, in this situation, is that you can automate the configuration of SSL certificates for your custom domain applications by running the letsencrypt certbot code in a separate instance without disrupting your application.

:
ap-route - Add a url route to an app

E:
f map-route APP_NAME DOMAIN [--hostname HOSTNAME] [--path PATH]

PLES:
f map-route my-app example.com                              # example.com
f map-route my-app example.com --hostname myhost            # myhost.example.com
f map-route my-app example.com --hostname myhost --path foo # myhost.example.com/foo

ONS:
-hostname, -n   Hostname for the route (required for shared domains)
-path           Path for the route

Firstly you must have the Bluemix CLI installed, custom domains created, DNS configured, and set your target of choice.

Once ready:

  1. download/clone this repo
  2. install the requests package (e.g. pip install requests)
  3. rename domains.yml.example to domains.yml
  4. enter your email address (e.g. for certificate renewal reminders)
  5. enter your custom domain name and its corresponding hostnames

Each [host].[domain] combination will become a separate DNS name in the SAN field of the requested certificate. Set the first host value to '.' to set the Subject Common Name to the name of the domain.

Note: During testing, please set staging to true in order to keep load off the production Let's Encrypt environment and reduce the chance of hitting their rate limits (https://letsencrypt.org/docs/staging-environment/).

Finally, run python setup-app.py to

  1. push the cf-letsencrypt application
  2. map the routes needed for Let's Encrypt to verify that you own the domain
  3. initiate and complete the Let's Encrypt ACME protocol for obtaining a certificate
  4. download the resulting certificate files, and
  5. upload it into IBM Cloud for your custom domain

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.