Rearrange the filesystem structure.
[ssh-ca] / etc / config.sh
CommitLineData
a91e8fcb
MW
1### -*-sh-*-
2###
3### Configuration for ssh-ca.
4
5###--------------------------------------------------------------------------
6### General configuration.
7
8## General configuration defaults.
9keytypes="rsa:3072 dsa:1024"
10domain="distorted.org.uk"
11cacomment="ssh-ca@$domain"
12validity="-1d:+2d"
50b96dc7 13publish_target="vampire.distorted.org.uk:/var/www/ssh-ca/"
a91e8fcb
MW
14
15## GnuPG defaults.
16gnupg_key_type=RSA gnupg_key_length=3072
17gnupg_key_realname_prefix="distorted.org.uk "
18gnupg_key_email_domain="$domain"
19
20###--------------------------------------------------------------------------
21### Scope for the CA.
22
23## Domain name.
24scope="*.$domain"
25
26## IPv4 addresses.
27for i in 144 145 146 147 148 149; do scope=$scope,"62.49.204.$i"; done
28scope=$scope,"62.49.204.15?"
29for i in 198 199; do scope=$scope,"172.29.198.*,172.29.199.*"; done
30
31## IPv6 addresses.
32scope=$scope,"2001:470:1f09:1b98:*,2001:470:9740:*"
33
34###----- That's all, folks --------------------------------------------------