• Stars
    star
    520
  • Rank 82,273 (Top 2 %)
  • Language
    Dockerfile
  • License
    Other
  • Created over 4 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

HTTPS domains for localhost. 🏠

Docker Cloud Build Status

localdots — HTTPS domains for localhost

Inspired by https://smallstep.com/blog/step-v0-8-6-valid-https-certificates-for-dev-pre-prod/

Important/Disclaimer

⚠️ This tool installs a root CA in your system. Use it only if you know what you are doing.

Also Important

As the title says, this tool is to be used for development. It is not meant to run at production and it hasn't been tested in CI environments either.

Please help report any issues!

Features

localdots combines Caddy and smallstep/certificates with automated configuration and hot reload.

  • Generates SSL/TLS certificates automatically
  • Reloads Caddy automatically with every change

Usage

# docker-compose.yaml

version: "3"

services:
  proxy:
    image: rnbw/localdots
    ports:
      - 80:80 # for http->https redirection
      - 443:443
    volumes:
      # contains all vhost files
      - ./caddy.d:/caddy.d:ro
      # contains CA config and certs
      - ~/.caroot:/caroot
    # only needed for *.localhost domains
    extra_hosts:
      - "whoami.localhost:127.0.0.1"

  # example containers
  whoami:
    image: jwilder/whoami
  hello:
    image: nginxdemos/hello
# ./caddy.d/whoami.localhost
whoami.localhost {
  proxy / whoami:8000
}

# ./caddy.d/hello.dev
hello.dev {
  proxy / hello
}
# run all the things
docker-compose up -d

# add the domains to your /etc/hosts file
# *.localhost domains shouldn't need to be added for typical use cases
127.0.0.1  hello.dev

# after localdots container is up and running,
# you will see a .caroot directory in your $HOME.
brew install step \
    && step certificate install ~/.caroot/certs/root_ca.crt

# that's it, try open the sites configured above
open https://whoami.localhost
open https://hello.dev

About domains

Using special TLDs

When picking a TLD for local development, you can use one of the special domain names suggested in RFC6761, such as test or localhost.

localhost has, by spec, the following particularities:

1.  Users are free to use localhost names as they would any other
    domain names.  Users may assume that IPv4 and IPv6 address
    queries for localhost names will always resolve to the respective
    IP loopback address.

2.  Application software MAY recognize localhost names as special, or
    MAY pass them to name resolution APIs as they would for other
    domain names.

3.  Name resolution APIs and libraries SHOULD recognize localhost
    names as special and SHOULD always return the IP loopback address
    for address queries and negative responses for all other query
    types.  Name resolution APIs SHOULD NOT send queries for
    localhost names to their configured caching DNS server(s).

However, if you expect anything.localhost to be resolved to 127.0.0.1 automatically, that might not work. For example, you can open it in Chrome and the browser will resolve it fine. But if you ping it or curl it, you'll get an error unless you add the record in your hosts file.

See https://tools.ietf.org/html/draft-west-let-localhost-be-localhost-06.

Using any TLD

Using any of the domains above, you can be sure you won't run into any conflicts. But other than that, there's no reason why you cannot use any other "registrable" domain. There are ~1600 possible TLDs you can choose from, or even invent your own!

While this can be seen as bad practice, I leave it to you. Personally I've seen several companies or dev teams using xyz, wtf, lol, dev, net, host, or even custom ones (i.e. not in the list) such as using the company name or team.

In my opinion, as long as you 1- know what you are doing, 2- don't shadow an existing domain that you or someone in your team uses (e.g. don't use gmail.com...) and 3- keep it scoped to your local development environment, then just use whatever works for you.

As with special domains, remember to add the necessary entries in your hosts file. Alternatively in this case, if you own the domain then you can always add the record in your DNS.

Contributing

Bugfixes, improvements, proposals are gladly welcome!

More Repositories

1

chromda

λ 🖼️ Chromda is an AWS Lambda function for capturing screenshots of websites.
JavaScript
505
star
2

ng-bs-daterangepicker

AngularJS directive for bootstrap-daterangepicker
JavaScript
246
star
3

moment-interval

Time intervals for Moment.js
JavaScript
48
star
4

docker-lambda-api-server

AWS Lambda API server for docker-lambda
JavaScript
24
star
5

express-babelify-middleware

Start developing ES6 in the browser right away, without any build setup
JavaScript
24
star
6

json-chance

Create random JSON objects using json-spawn and Chance.js
JavaScript
21
star
7

rnbw-aws-cdk

AWS CDK Construct libraries
JavaScript
16
star
8

smart-identity-resolver-widget

Experimental login/signup widget as an alternative attempt to deal with the "Open ID NASCAR" problem.
JavaScript
13
star
9

elaine

Elaine is a TypeScript library designed for crafting chatbots and conversational interfaces on Node and Edge runtimes, leveraging the OpenAI Chat Completion API.
TypeScript
4
star
10

moss

My macOS Setup
Shell
3
star
11

thrift-archetype-quickstart

Thrift Quickstart Archetype
2
star
12

cryptoplay

Simple crypto playground based on CryptoJS and Angular
HTML
2
star
13

ngstart

Kickstart script that creates a skeleton AngularJS project with Gulp, livereload and automated tests
JavaScript
1
star
14

devbox-node

Node development sandbox with Docker
Shell
1
star
15

muito

A collection of React components based on Material-UI.
TypeScript
1
star
16

localtunnel-es6-promise

Simple ES6 Promise wrapper for localtunnel.
JavaScript
1
star
17

crypto-pipeline

JavaScript
1
star
18

fbanalytics

JavaScript
1
star