Пример проекта https://github.com/xingyu217/Redis-nginx-aspnetcore-session nginx .config:
upstream study_server{
server localhost:8011 weight=1;
server localhost:8013 weight=1;
#server localhost:8014 weight=1;
#server 172.17.16.147:8012 weight=2;
#server 172.17.16.147:8011 weight=2;
}
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
#root html;
#index index.html index.htm;
proxy_pass http://study_server/;
proxy_cookie_path ~*^/.* /;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
Получить идентификатор сеанса: ViewBag.seId = HttpContext.Session.Id ;
Startup.cs:
public void ConfigureServices(IServiceCollection services)
{
services.Configure<CookiePolicyOptions>(options =>
{
// This lambda determines whether user consent for non-essential cookies is needed for a given request.
options.CheckConsentNeeded = context => true;
options.MinimumSameSitePolicy = SameSiteMode.None;
});
//services.AddDistributedMemoryCache();
services.AddDistributedRedisCache(options =>
{
options.Configuration = Configuration.GetConnectionString("RedisConnection");
options.InstanceName = "master";
});
services.AddSession(options =>
{
options.IdleTimeout = TimeSpan.FromSeconds(100);
//options.Cookie.HttpOnly = true;
});
//services.AddSession();
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
//app.UseDeveloperExceptionPage();
//app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseCookiePolicy();
app.UseSession();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
}
URL доступа: localhost и refre sh снова и снова, идентификатор сеанса будет постоянно меняться.
Я проверил ключи в Redis Server, он всегда генерирует новый ключ при обновлении страницы sh. (egmasterdef69307-fbd3-c6ed-91d2-009b2306f902)
Если я просто использую сервер (localhost: 8011):
upstream study_server{
server localhost:8011 weight=1;
#server localhost:8013 weight=1;
#server localhost:8014 weight=1;
#server 172.17.16.147:8012 weight=2;
#server 172.17.16.147:8011 weight=2;
}
Идентификатор сеанса не изменится.
Кто-нибудь знает, что это будет оценено.
Спасибо