aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-10-18 21:51:47 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-10-18 21:51:47 -0400
commit483c014b938e2d55ea7c89b67f6d19ba2c2d5b5e (patch)
treebefba464af730ad2b27d1cf2c20993aa227ca688
parent8870972a6401a3cef0202ad744b87508dc324b6b (diff)
account and endpoint security updates
-rw-r--r--plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs1
-rw-r--r--plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs1
-rw-r--r--plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs1
3 files changed, 0 insertions, 3 deletions
diff --git a/plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs b/plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs
index a798314..d07c59e 100644
--- a/plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs
+++ b/plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs
@@ -82,7 +82,6 @@ namespace VNLib.Data.Caching.ObjectCache.Server.Endpoints
///<inheritdoc/>
protected override ProtectionSettings EndpointProtectionSettings { get; } = new()
{
- DisableBrowsersOnly = true,
DisableSessionsRequired = true
};
diff --git a/plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs b/plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs
index adb83e0..7d376b8 100644
--- a/plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs
+++ b/plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs
@@ -47,7 +47,6 @@ namespace VNLib.Data.Caching.ObjectCache.Server.Endpoints
///<inheritdoc/>
protected override ProtectionSettings EndpointProtectionSettings { get; } = new()
{
- DisableBrowsersOnly = true,
DisableSessionsRequired = true
};
diff --git a/plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs b/plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs
index 3fcc471..87a471b 100644
--- a/plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs
+++ b/plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs
@@ -53,7 +53,6 @@ namespace VNLib.Data.Caching.ObjectCache.Server.Endpoints
//Loosen up security requirements
protected override ProtectionSettings EndpointProtectionSettings { get; } = new()
{
- DisableBrowsersOnly = true,
DisableSessionsRequired = true,
};