1 |
# |
2 |
# $Id$ |
3 |
# |
4 |
# OpenSSL configuration file for use with Eggdrop |
5 |
# Don't edit it unless you know what you're doing. |
6 |
# |
7 |
|
8 |
#################################################################### |
9 |
[ ca ] |
10 |
default_ca = CA_default # The default ca section |
11 |
|
12 |
#################################################################### |
13 |
[ CA_default ] |
14 |
|
15 |
default_days = 365 # how long to certify for |
16 |
default_crl_days = 30 # how long before next CRL |
17 |
default_md = sha1 # which md to use. |
18 |
|
19 |
#################################################################### |
20 |
[ req ] |
21 |
default_bits = 2048 |
22 |
default_keyfile = eggdrop.key |
23 |
distinguished_name = req_dn |
24 |
req_extensions = v3_req |
25 |
serial = 1337 # value between 0 and 9999 |
26 |
|
27 |
[ req_dn ] |
28 |
countryName = Country Name (2 letter code) |
29 |
countryName_default = EU |
30 |
countryName_min = 2 |
31 |
countryName_max = 2 |
32 |
|
33 |
stateOrProvinceName = State or Province Name (full name) |
34 |
|
35 |
localityName = Locality Name (eg, city) |
36 |
|
37 |
organizationName = Organization Name (eg, company) |
38 |
organizationName_default = Eggheads |
39 |
|
40 |
organizationalUnitName = Organizational Unit Name (eg, section) |
41 |
organizationalUnitName_default = Botnet |
42 |
|
43 |
commonName = Common Name (typically your domain name) |
44 |
commonName_max = 128 |
45 |
|
46 |
emailAddress = Your Email Address |
47 |
emailAddress_max = 64 |
48 |
|
49 |
userId = Botnet Nick |
50 |
userId_max = 32 |
51 |
|
52 |
[ v3_req ] |
53 |
basicConstraints = CA:FALSE |
54 |
keyUsage = digitalSignature, keyEncipherment |
55 |
subjectAltName = @alt_names |
56 |
|
57 |
[ alt_names ] |
58 |
|
59 |
# You should specify here all possible botaddrs. To avoid confusion, |
60 |
# this is what you would use in .+bot or .chaddr. |
61 |
# Addresses could be hostnames or IPv4/v6 addresses. |
62 |
|
63 |
DNS.1 = |
64 |
#DNS.2 = this.bot.net |
65 |
#DNS.3 = lamestbot.net |
66 |
#DNS.4 = ... |
67 |
#IP.1 = 99.99.0.0 |
68 |
#IP.2 = 2001:db8:618:5c0:263:: |