forked from digitorus/pdfsigner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.example.toml
45 lines (41 loc) · 864 Bytes
/
config.example.toml
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
licensePath = "./pdfsigner.lic"
# mixed command
[service1]
type = "watch"
signer = "signer1"
in = "path/to/inputfolder"
out = "path/to/outputfolder"
validateSignature = true
[serviceOther]
type = "serve"
signers = [ "signer1" ]
addr = "127.0.0.1"
port = 3000
validateSignature = true
# signers
[signer1]
type = "pem"
crtPath = "path/to/crt"
keyPath = "path/to/private/key"
crtChainPath = "path/to/certificate/chain"
[signer.signData.signature]
docMDP = 1
certType = 1
[signer.signData.signature.info]
name = "name"
location = "location"
reason = "reason"
contactInfo = "contact"
[signerOther]
type = "pksc11"
libPath = "path/to/lib"
pass = "path/to/lib"
crtChainPath = "path/to/certificate/chain"
[signer.signData.signature]
certType = 1
docMDP = 1
[signer.signData.signature.info]
name = "name"
location = "location"
reason = "reason"
contactInfo = "contact"