http://127.0.0.1:6010
http://127.0.0.1:6020
是同一个网站编译出来的,所有代码都一样,只是端口不一样
webBuilder.UseKestrel().UseUrls("http://:6010").UseStartup<Startup>();
webBuilder.UseKestrel().UseUrls("http://:6020").UseStartup<Startup>();
services.AddAuthentication(opts =>
{
opts.DefaultAuthenticateScheme = "AAA.Cookies";
opts.DefaultChallengeScheme = "AAA.Cookies";
}).AddCookie("LIAOCMS.Cookies", x =>
{
x.Cookie.HttpOnly = true;
x.LoginPath = "/Login/Index";
x.Cookie.Path = "/";
});
我访问6010登录系统后,继续访问6020
想要自动登录6020
问下怎么实现
如果是负载均衡, 那么只需要共享session 就可以,(比如统一用同一个redis 做session存储)。
公用内存、硬盘、进程...不同硬件还有不同的虚拟模型及接口方式。
去搜下单点登录