trilium/generate-cert.sh

17 lines
370 B
Bash
Raw Normal View History

2017-08-15 09:05:01 +08:00
#!/bin/bash
# Script generates certificate by default into the ~/trilium-data/cert where it is expected by Trilium
# If directory is given in argument, certificate will be created there.
if [ $# -eq 0 ]
then
DIR=~/trilium-data/cert
else
DIR=$1
fi
mkdir -p "$DIR"
cd "$DIR"
2017-08-15 09:05:01 +08:00
2017-11-17 12:55:50 +08:00
openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 2000 -nodes