9 lines
219 B
Bash
Executable File
9 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
openssl req -newkey rsa:4096 \
|
|
-x509 \
|
|
-sha256 \
|
|
-days 36500 \
|
|
-nodes \
|
|
-out ./certs/gatecounter.crt \
|
|
-keyout ./certs/gatecounter.key
|