blob: e2d586be0719089292a3190fcc0dd2a93b42f99d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// SpaceBeans gemini server configuration
// listening address/port
address = "127.0.0.1"
port = 1965
// how long until an idle connection is closed
idle-timeout = "10 seconds"
// default MIME type if detection fails
default-mime-type = "text/plain"
// by default a built-in resolver is used;
// use this to define your own MIME types
// mime-types = {
// "text/gemini": [".gmi", ".gemini"]
// }
// hosts configuration
virtual-hosts = [
{
host = "localhost"
root = "/var/gemini/localhost/"
index-file = "index.gmi"
directory-listing = true
// optional parameters for text/gemini
// gemini-params = "charset=utf-8; lang=en"
// comment out to use an auto-generated self-signed certificate
key-store {
path = "/path/to/keystore.jks"
alias = "localhost"
password = "secret"
}
}
]
// SSL support
gen-cert-valid-for = "365 days"
enabled-protocols = [ "TLSv1.2", "TLSv1.3" ]
enabled-cipher-suites = [
"TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256",
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
"TLS_DHE_RSA_WITH_AES_256_GCM_SHA384",
"TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"
]
|