mirror of
git://git.acid.vegas/unrealircd.git
synced 2024-12-28 01:06:37 +00:00
32 lines
843 B
Plaintext
32 lines
843 B
Plaintext
|
# create RSA certs - Server
|
||
|
|
||
|
[ req ]
|
||
|
# Note: RSA bits is ignored, as we use ECC now
|
||
|
default_bits = 2048
|
||
|
distinguished_name = req_dn
|
||
|
x509_extensions = cert_type
|
||
|
|
||
|
[ req_dn ]
|
||
|
countryName = Country Name
|
||
|
countryName_default = US
|
||
|
countryName_min = 2
|
||
|
countryName_max = 2
|
||
|
|
||
|
stateOrProvinceName = State/Province
|
||
|
stateOrProvinceName_default = New York
|
||
|
|
||
|
localityName = Locality Name (eg, city)
|
||
|
|
||
|
0.organizationName = Organization Name (eg, company)
|
||
|
0.organizationName_default = SuperNETs
|
||
|
|
||
|
organizationalUnitName = Organizational Unit Name (eg, section)
|
||
|
organizationalUnitName_default = IRCd
|
||
|
|
||
|
0.commonName = Common Name (Full domain of your server)
|
||
|
1.commonName_value = localhost
|
||
|
|
||
|
[ cert_type ]
|
||
|
nsCertType = server
|
||
|
|