start working on new landing page

This commit is contained in:
t3chn0m4g3
2020-01-24 02:21:33 +00:00
parent d643ca7a01
commit 95a075e764
15 changed files with 413 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/bash
# Got root?
myWHOAMI=$(whoami)
if [ "$myWHOAMI" != "root" ]
then
echo "Need to run as root ..."
exit
fi
openssl req -nodes -x509 -sha512 -newkey rsa:8192 -keyout "nginx.key" -out "nginx.crt" -days 3650