How to Implement Application-based stickiness in ELB?

Viewed 23

I am using sticky session using Duration based cookie generated by ELB, Now I want to use application based cookie in ELB. I created a cookie "STICKYSESSID" in laravel controller but how to send this cookie in each request? I am not aware about it. I am using multiple ajax call so Do i need to send this cookie in each ajax call also?

i dont have testing environment like ELB, instance to test. I have to implement this in live directly So I cant touch to live without enough knowledge.

1 Answers

You can do this via EC2 > Target groups > YourTargetGroup > Attributes > Edit as shown in the picture. AppBasedStickySession

Related