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_lds.conf | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'config/server_lds.conf') diff --git a/config/server_lds.conf b/config/server_lds.conf index 9ce5e9b..54e0457 100644 --- a/config/server_lds.conf +++ b/config/server_lds.conf @@ -5,20 +5,21 @@ # applicationUri OPC UA application URI # certificate Path to server certificate (.der) # privateKey Path to server private key (.der) -# cleanupTimeout Seconds before stale registrations are removed (must be > 10) +# 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) +# cleanupTimeout Seconds before stale registrations are removed (must be > 10) port = 4840 applicationUri = urn:localhost:bobink:ServerLDS + certificate = certs/ServerLDS_cert.der privateKey = certs/ServerLDS_key.der -cleanupTimeout = 60 +trustStore = certs/trust/server_lds authMode = user username = user password = password -trustStore = certs/trust/server_lds +cleanupTimeout = 60 -- cgit v1.2.3