From a355e12201f50d8f52738d225c270042913030e2 Mon Sep 17 00:00:00 2001 From: vnugent Date: Mon, 24 Jun 2024 16:46:04 -0400 Subject: ci: Consolidate ci configuration --- .../config-templates/SessionProvider-template.json | 25 ---------------------- 1 file changed, 25 deletions(-) delete mode 100644 ci/container/config-templates/SessionProvider-template.json (limited to 'ci/container/config-templates/SessionProvider-template.json') diff --git a/ci/container/config-templates/SessionProvider-template.json b/ci/container/config-templates/SessionProvider-template.json deleted file mode 100644 index 328f06f..0000000 --- a/ci/container/config-templates/SessionProvider-template.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - - "debug": ${DEBUG_PLUGINS}, - - //Provider assemblies to load - "provider_assemblies": [ "VNLib.Plugins.Sessions.VNCache.dll" ], - - //Web session provider, valid format for VNCache and also memory sessions - "web": { - //Cache system key prefix - "cache_prefix": "websessions", - //The session cookie name - "cookie_name": "sb-session", - //Size in bytes for generated session ids - "cookie_size": 40, - //time (in seconds) a session is valid for - "valid_for_sec": 3600, - //The maxium number of connections waiting for the cache server responses - "max_waiting_connections": 100, - //Enforce strict cross-origin session checks - "strict_cors": true, - ///Enforces strict TLS to help prevent tls downgrades based on stored session variables (privacy note: this can be leaked through brute-forced if session id is stolen) - "strict_tls_protocol": true - } -} \ No newline at end of file -- cgit