blob: 5c769cf98a2101344c0a3cdd33e81313185c71eb (
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
|
# The value of "privkey" specifies the (private) account key to use
# for signing requests. Currently supported values are:
#
# - file:FILE, for a private key in PEM format (optionally encrypted)
# - gpg:FILE, for a gpg-encrypted private key
#
#privkey = file:/path/to/account.key
#privkey = gpg:/path/to/encrypted/account.key.gpg
# For a gpg-encrypted private account key, "gpg" specifies the binary
# gpg(1) to use, as well as some default options. Default: "gpg
# --quiet".
#
#gpg = gpg --quiet --no-auto-check-trustdb
# The value of "socket" specifies the UNIX-domain socket to bind against
# for signature requests from the ACME client. An error is raised if
# the path exists or if its parent directory is writable by other
# users.
#
#socket = %t/S.lacme
# An optional file where to log to.
#
#logfile =
# The "Key ID", as shown by `acme account`, to give the ACME client.
# A non-empty value revokes all account management access (status
# change, contact address updates etc.) from the client.
#
#keyid =
# Be quiet. Possible values: "Yes"/"No".
#
#quiet = Yes
; vim:ft=dosini
|