mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-07-25 12:01:04 +02:00
7 lines
165 B
Bash
Executable file
7 lines
165 B
Bash
Executable file
#!/bin/bash
|
|
mkdir -p certs
|
|
openssl req -x509 -nodes -newkey rsa:2048 \
|
|
-keyout certs/local.key \
|
|
-out certs/local.crt \
|
|
-days 365 \
|
|
-subj "/CN=3.150.115.69"
|