Skip to content

Commit

Permalink
improve session handling recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Feb 19, 2025
1 parent c89cb73 commit c03bbb2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/recipes/session-handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,13 @@ Since Lucee 6.1, Lucee only accepts the key in the URL in case it has active ses
So in case you are using a storage (not "memory"), this is only up to a minute.
Since Lucee 6.1 you can completely block the use of CFID in the url by setting the following system property
``` -Dlucee.read.cfid.from.url=false```
```properties
-Dlucee.read.cfid.from.url=false
```
or environment variable
``` LUCEE_READ_CFID_FROM_URL=false```
```bash
LUCEE_READ_CFID_FROM_URL=false
```
## Best Practices
Expand Down

0 comments on commit c03bbb2

Please sign in to comment.