mirror of
https://github.com/actix/actix-extras.git
synced 2025-08-30 19:10:20 +02:00
update guide examples
This commit is contained in:
@@ -203,9 +203,8 @@ fn main() {
|
||||
server::new(
|
||||
|| App::new()
|
||||
.middleware(SessionStorage::new( // <- create session middleware
|
||||
CookieSessionBackend::build(&[0; 32]) // <- create cookie session backend
|
||||
CookieSessionBackend::new(&[0; 32]) // <- create cookie session backend
|
||||
.secure(false)
|
||||
.finish()
|
||||
)))
|
||||
.bind("127.0.0.1:59880").unwrap()
|
||||
.start();
|
||||
|
Reference in New Issue
Block a user