mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
34bc5e0638
Added IMVCJSONRPCExecutor for a simpler use of JSON-RPC servers
13 lines
422 B
Batchfile
13 lines
422 B
Batchfile
@echo off
|
|
|
|
set APACHEPATH=D:\Tools\Apache24
|
|
|
|
IF EXIST %APACHEPATH% (
|
|
echo Using Apache at path %APACHEPATH%
|
|
%APACHEPATH%\bin\openssl genrsa -out privkey.pem 4096
|
|
%APACHEPATH%\bin\openssl.exe req -new -x509 -config %APACHEPATH%\conf\openssl.cnf -key privkey.pem -out cacert.pem -days 1095
|
|
) ELSE (
|
|
echo Please set APACHEPATH to a valid Apache httpd distribution (download it from https://www.apachelounge.com/download/)
|
|
)
|
|
|