From 5726a0d84460a4b67a254c4dcfaa40bf9cc12e45 Mon Sep 17 00:00:00 2001 From: Thomas Vanbesien Date: Wed, 18 Feb 2026 10:16:45 +0100 Subject: Standardize config file section ordering, list operations in usage Group config keys into sections separated by blank lines: identity, encryption (certificate/privateKey/trustStore), security mode, auth. Program-specific keys (cleanupTimeout, registerInterval) go last. Show available operations in Client usage message. --- config/server_register.conf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'config/server_register.conf') diff --git a/config/server_register.conf b/config/server_register.conf index 1c3410d..b3f9290 100644 --- a/config/server_register.conf +++ b/config/server_register.conf @@ -5,21 +5,21 @@ # applicationUri OPC UA application URI # certificate Path to server certificate (.der) # privateKey Path to server private key (.der) -# registerInterval Seconds between re-registrations with the LDS +# trustStore Directory containing trusted certificates (.der) # authMode "anonymous" or "user" # username Username (required when authMode = user) # password Password (required when authMode = user) -# trustStore Directory containing trusted certificates (.der) +# 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 - -registerInterval = 10 +trustStore = certs/trust/server_register authMode = user username = user password = password -trustStore = certs/trust/server_register +registerInterval = 10 -- cgit v1.2.3