-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubregsim.conf.example
More file actions
39 lines (28 loc) · 1.19 KB
/
subregsim.conf.example
File metadata and controls
39 lines (28 loc) · 1.19 KB
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
# Sample configuration; when running in Docker, place this file in /config
# Default simulator user name
username = username
# Default simulator password
password = password
# Default simulated domain. To simulate multiple domains, pass a list,
# e.g. domain = [example.com, example.net, example.org]
domain = example.com
# Host name or IP address to listen on (use 127.0.0.1 for testing on localhost,
# or 0.0.0.0 to accept any address for testing with Docker)
#host = 127.0.0.1
# Port to listen on (defaults to 80, or 443 when ssl is enabled)
#port = 80
# If you want to switch to HTTPS (SSL), uncomment the following line
#ssl = true
# SSL server certificate in PEM format (may contain private key)
#ssl-certificate = server-certificate.crt
# SSL server private key in PEM format (not necessary if present in the
# certificate file)
#ssl-private-key = server-certificate.key
# If you want to enable simple DNS server serving added records, uncomment the
# following line
#dns = true
# DNS server port to listen on
#dns-port = 53
# DNS server host name or IP address to listen on (use 127.0.0.1 for testing on
# localhost, or 0.0.0.0 to accept any address for testing with Docker)
#dns-host = 127.0.0.1