skip to Main Content

Session id always changing for ASP.NET Core + Redis + nginx

The sample project 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…

VIEW QUESTION
Back To Top
Search