mirror of
https://github.com/gnh1201/caterpillar.git
synced 2024-11-26 15:31:45 +00:00
5 lines
163 B
Bash
5 lines
163 B
Bash
#!/bin/sh
|
|
openssl genrsa -out ca.key 2048
|
|
openssl req -new -x509 -days 3650 -key ca.key -out ca.crt -subj "/CN=php-httpproxy CA"
|
|
openssl genrsa -out cert.key 2048
|