14 lines
169 B
Bash
Executable File
14 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source "../../.env"
|
|
|
|
DOMAIN=$(echo "$DOMAIN")
|
|
|
|
mkcert -install "${DOMAIN}"
|
|
|
|
mkdir -p ../certs
|
|
|
|
find . -type f -name "*.pem" -exec mv {} ../certs \;
|