6 lines
150 B
Bash
6 lines
150 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm -rf ./CTFd/ssl/*
|
||
|
|
||
|
openssl req -new -newkey rsa:4096 -x509 -sha256 -days 365 -nodes -out ./CTFd/ssl/ctfd.crt -keyout ./CTFd/ssl/ctfd.key
|