All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ill.akka-http-session.core_2.11.0.2.7.source-code.reference.conf Maven / Gradle / Ivy

There is a newer version: 0.5.11
Show newest version
akka.http.session {
  cookie {
    name = "_sessiondata"
    domain = none
    path = /
    secure = false
    http-only = true
  }
  header {
    send-to-client-name = "Set-Authorization"
    get-from-client-name = "Authorization"
  }
  max-age = 7 days
  encrypt-data = false

  csrf {
    cookie {
      name = "XSRF-TOKEN"
      domain = none
      path = /
      secure = false
      http-only = false
    }
    submitted-name = "X-XSRF-TOKEN"
  }

  refresh-token {
    cookie {
      name = "_refreshtoken"
      domain = none
      path = /
      secure = false
      http-only = true
    }
    header {
      send-to-client-name = "Set-Refresh-Token"
      get-from-client-name = "Refresh-Token"
    }
    max-age = 30 days
    remove-used-token-after = 5 seconds
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy