mirror of
git://git.acid.vegas/unrealircd.git
synced 2024-11-10 18:16:52 +00:00
32 lines
843 B
INI
32 lines
843 B
INI
# 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
|
|
|