MVC6 で ASP.NET 5 を使用しています。Identity 3.0 を使用していますが、多くの Web サーバーで動作させる方法を知る必要があります。
セッションを別の場所に保存することはできますか? データベース?MVC5 では web.config でそれを行いましたが、MVC6 ではそれに関する情報が見つかりません。
これは Startup.cs の私のコードです
app.UseCookieAuthentication(options =>
{
options.AutomaticAuthenticate = true;
options.LoginPath = new PathString("/Account/Login");
options.AutomaticChallenge = true;
});
ありがとう!!