mirror of
https://github.com/net-byte/vtun
synced 2024-03-14 10:50:03 +08:00
9 lines
247 B
Bash
Executable File
9 lines
247 B
Bash
Executable File
#!bin/bash
|
|
|
|
domain="vtun.org"
|
|
email="admin@vtun.org"
|
|
|
|
echo "make cert"
|
|
openssl req -new -nodes -x509 -out ./certs/server.pem -keyout ./certs/server.key -days 3650 -subj "/C=DE/ST=NRW/L=Earth/O=Random Company/OU=IT/CN=$domain/emailAddress=$email"
|
|
|