2015-01-25 10:34:10 -05:00
|
|
|
@echo off
|
2014-05-01 05:48:45 -04:00
|
|
|
echo This script generates the certificate and private key for the https webadmin
|
|
|
|
echo Note that the generated certificate is self-signed, and therefore not trusted by browsers
|
|
|
|
echo Note that this script requires openssl to be installed and in PATH
|
|
|
|
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.
|
2014-05-01 06:27:07 -04:00
|
|
|
echo If OpenSSL fails with an error, "WARNING: can't open config file: /usr/local/ssl/openssl.cnf", you need to run this script as an administrator
|
|
|
|
echo.
|
2014-05-01 05:48:45 -04:00
|
|
|
|
|
|
|
openssl req -x509 -newkey rsa:2048 -keyout httpskey.pem -out httpscert.crt -days 3650 -nodes
|
2014-05-07 09:09:25 -04:00
|
|
|
pause
|