unrealircd

- supernets unrealircd source & configuration
git clone git://git.acid.vegas/unrealircd.git
Log | Files | Refs | Archive | README | LICENSE

tls.cnf (843B)

      1 # create RSA certs - Server
      2 
      3 [ req ]
      4 # Note: RSA bits is ignored, as we use ECC now
      5 default_bits = 2048
      6 distinguished_name = req_dn
      7 x509_extensions = cert_type
      8 
      9 [ req_dn ]
     10 countryName = Country Name
     11 countryName_default             = US
     12 countryName_min                 = 2
     13 countryName_max                 = 2
     14 
     15 stateOrProvinceName             = State/Province
     16 stateOrProvinceName_default     = New York
     17 
     18 localityName                    = Locality Name (eg, city)
     19 
     20 0.organizationName              = Organization Name (eg, company)
     21 0.organizationName_default      = IRC geeks
     22 
     23 organizationalUnitName          = Organizational Unit Name (eg, section)
     24 organizationalUnitName_default  = IRCd  
     25 
     26 0.commonName                    = Common Name (Full domain of your server)
     27 1.commonName_value              = localhost
     28 
     29 [ cert_type ]
     30 nsCertType = server
     31