-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathscepy.cfg.example
More file actions
28 lines (19 loc) · 789 Bytes
/
scepy.cfg.example
File metadata and controls
28 lines (19 loc) · 789 Bytes
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
# Flask based settings
DEBUG = True
# Use this if you are running the dev server and expect to test with external clients. The port is required
SERVER_NAME = "imac.local:5000"
# Directory where certs, revocation lists, serials etc will be kept
SCEPY_CA_ROOT = "/path/to/ca"
# X.509 Name Attributes used to generate the CA Certificate
SCEPY_CA_X509_CN = 'SCEPY-CA'
SCEPY_CA_X509_O = 'SCEPy'
SCEPY_CA_X509_C = 'AU'
# SubjectAltName extension is always on and will use this DNSName
SAN_DNSNAME = 'scepy.dev'
# Listen port
PORT = 5000
# (Optional) SCEP static challenge
SCEPY_CHALLENGE = 'sekret'
# Raw data will be dumped to this directory for inspection with tools such as OpenSSL (openssl asn1parse)
SCEPY_DUMP_DIR = '/tmp/scepy_dump'
SCEPY_FORCE_DEGENERATE_FOR_SINGLE_CERT = False