mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-22 10:11:26 +00:00
13 lines
319 B
Batchfile
13 lines
319 B
Batchfile
@echo off
|
|
|
|
openssl genrsa -out rootCA.key 2048
|
|
openssl req -x509 -new -nodes -key rootCA.key -days 3650 -out rootCA.crt -subj "/C=CN/ST=SH/L=SH/O=AnyProxy/OU=Section/CN=Anyproxy SSL Proxying/emailAddress=AnyProxy@AnyProxy"
|
|
echo =============
|
|
echo rootCA generated at :
|
|
echo %cd%
|
|
echo =============
|
|
|
|
start .
|
|
|
|
rem exit 0
|