Skip to content

Commit

Permalink
added encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabefire committed Aug 1, 2024
1 parent 93bf61c commit c37d99a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion TalkWaveApi.WebSocket/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@
hubOptions.EnableDetailedErrors = true;
hubOptions.KeepAliveInterval = TimeSpan.FromSeconds(10);
hubOptions.HandshakeTimeout = TimeSpan.FromSeconds(5);
}).AddStackExchangeRedis("talkwaveapiserverless-vxc8e3.serverless.use2.cache.amazonaws.com", o => o.Configuration.AbortOnConnectFail = false);
}).AddStackExchangeRedis("talkwaveapiserverless-vxc8e3.serverless.use2.cache.amazonaws.com", o =>
{
o.Configuration.Ssl = true;
o.Configuration.AbortOnConnectFail = false;
});

var app = builder.Build();

Expand Down

0 comments on commit c37d99a

Please sign in to comment.