ansible/files/sign/server.conf.secondary

52 lines
1.5 KiB
Text
Raw Normal View History

2013-06-04 17:19:01 +00:00
# This is a configuration for the sigul server.
2015-04-27 19:50:21 +00:00
# FIXME: remove my data
2013-06-04 17:19:01 +00:00
[server]
# Host name of the publically acessible bridge to clients
2015-04-27 19:50:21 +00:00
bridge-hostname: secondary-signer
2013-06-04 17:19:01 +00:00
# Port on which the bridge expects server connections
2015-04-27 19:50:21 +00:00
; bridge-port: 44333
2013-06-04 17:19:01 +00:00
# Maximum accepted size of payload stored on disk
max-file-payload-size: 2073741824
# Maximum accepted size of payload stored in server's memory
max-memory-payload-size: 1048576
# Nickname of the server's certificate in the NSS database specified below
2015-04-27 19:50:21 +00:00
server-cert-nickname: secondary-signer-server
signing-timeout: 4000
2013-06-04 17:19:01 +00:00
[database]
2015-04-27 19:50:21 +00:00
# Path to a SQLite database
; database-path: /var/lib/sigul/server.conf
2013-06-04 17:19:01 +00:00
[gnupg]
# Path to a directory containing GPG configuration and keyrings
gnupg-home: /var/lib/sigul/gnupg
# Default primary key type for newly created keys
gnupg-key-type: RSA
# Default primary key length for newly created keys
gnupg-key-length: 4096
# Default subkey type for newly created keys, empty for no subkey
2015-04-27 19:50:21 +00:00
#gnupg-subkey-type: ELG-E
2013-06-04 17:19:01 +00:00
# Default subkey length for newly created keys if gnupg-subkey-type is not empty
2015-04-27 19:50:21 +00:00
# gnupg-subkey-length: 4096
2013-06-04 17:19:01 +00:00
# Default key usage flags for newly created keys
gnupg-key-usage: encrypt, sign
# Length of key passphrases used for newsly created keys
2015-04-27 19:50:21 +00:00
; passphrase-length: 64
2013-06-04 17:19:01 +00:00
[daemon]
# The user to run as
unix-user: sigul
# The group to run as
unix-group: sigul
[nss]
# Path to a directory containing a NSS database
nss-dir: /var/lib/sigul
# Password for accessing the NSS database. If not specified, the server will
# ask on startup
; nss-password is not specified by default
2015-04-27 19:50:21 +00:00