aboutsummaryrefslogtreecommitdiffstats
path: root/config/server_register.conf
blob: b3f9290d23c11cbaaa192389028ecc75b62fae92 (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
# ServerRegister — server configuration
#
# Keys:
#   port              Server port number
#   applicationUri    OPC UA application URI
#   certificate       Path to server certificate (.der)
#   privateKey        Path to server private key (.der)
#   trustStore        Directory containing trusted certificates (.der)
#   authMode          "anonymous" or "user"
#   username          Username (required when authMode = user)
#   password          Password (required when authMode = user)
#   registerInterval  Seconds between re-registrations with the LDS

port = 4841
applicationUri = urn:localhost:bobink:ServerRegister

certificate = certs/ServerRegister_cert.der
privateKey = certs/ServerRegister_key.der
trustStore = certs/trust/server_register

authMode = user
username = user
password = password

registerInterval = 10