19 lines
577 B
Bash
Executable File
19 lines
577 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
# Generate a new RSA key/cert for local development
|
|
HOST="localhost"
|
|
CRT="$HOST.crt"
|
|
KEY="$HOST.key"
|
|
|
|
# Install the system certificate if it's not already
|
|
# NOTE: The ecdsa flag does nothing but I wish it did
|
|
go run filippo.io/mkcert -ecdsa -install
|
|
|
|
# Generate a new certificate for localhost
|
|
# This fork of mkcert supports the -days flag.
|
|
# TODO remove the -days flag when Chrome accepts self-signed certs.
|
|
go run filippo.io/mkcert -ecdsa -days 10 -cert-file "$CRT" -key-file "$KEY" localhost 127.0.0.1 ::1
|