We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4399bb commit 10a34e6Copy full SHA for 10a34e6
CFLookup/Program.cs
@@ -101,6 +101,9 @@ private static async Task Main(string[] args)
101
var redis = ConnectionMultiplexer.Connect(redisServer);
102
103
builder.Services.AddSingleton(redis);
104
+
105
+ builder.Services.AddDataProtection()
106
+ .PersistKeysToStackExchangeRedis(redis, "CFLookup-DataProtection-Keys");
107
108
builder.Services.AddScoped(x => new SqlConnection(dbConnectionString));
109
0 commit comments