1
0

Fixed cert filename in Linux script.

This commit is contained in:
madmaxoft 2014-05-07 15:09:25 +02:00
parent ac1c3ba5d9
commit 45ca5bb857
2 changed files with 2 additions and 2 deletions

View File

@ -8,4 +8,4 @@ echo If OpenSSL fails with an error, "WARNING: can't open config file: /usr/loca
echo.
openssl req -x509 -newkey rsa:2048 -keyout httpskey.pem -out httpscert.crt -days 3650 -nodes
pause
pause

View File

@ -7,4 +7,4 @@ echo ""
echo "When OpenSSL asks you for Common Name, you need to enter the fully qualified domain name of the server, that is, e. g. gallery.xoft.cz"
echo ""
openssl req -x509 -newkey rsa:2048 -keyout httpskey.pem -out httpscert.pem -days 3650 -nodes
openssl req -x509 -newkey rsa:2048 -keyout httpskey.pem -out httpscert.crt -days 3650 -nodes