Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ tower:

Platform login sessions remain active as long as the application browser window remains open and active. Sessions use short-lived access tokens that are automatically refreshed via heartbeat.

| Setting | Default | Description |
| :------------------------- | :--------- | :--------------------------------------------------------------------- |
| `micronaut.security.token.generator.access-token.expiration` | 3600s (1h) | Short-lived token, auto-refreshed via heartbeat |
| `micronaut.security.token.jwt.signatures.refresh-token.expiration` | 6h | Session idle timeout — users are logged out after this period of inactivity |
| `micronaut.security.token.refresh.cookie.cookie-max-age` | 12h | Browser cookie lifetime (should be ≥ refresh token) |
| Setting | Default | Description |
|:------------------------------------------------------------------|:-----------|:----------------------------------------------------------------------------|
| `micronaut.security.token.generator.access-token.expiration` | 3600s (1h) | Short-lived token, auto-refreshed via heartbeat |
| `micronaut.security.token.jwt.generator.refresh-token.expiration` | 6h | Session idle timeout — users are logged out after this period of inactivity |
| `micronaut.security.token.refresh.cookie.cookie-max-age` | 12h | Browser cookie lifetime (should be ≥ refresh token) |

**tower.yml**

Expand All @@ -127,7 +127,7 @@ micronaut:
security:
token:
jwt:
signatures:
generator:
refresh-token:
expiration: 8h
generator:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ tower:

Platform login sessions remain active as long as the application browser window remains open and active. Sessions use short-lived access tokens that are automatically refreshed via heartbeat.

| Setting | Default | Description |
| :------------------------- | :--------- | :--------------------------------------------------------------------- |
| `micronaut.security.token.generator.access-token.expiration` | 3600s (1h) | Short-lived token, auto-refreshed via heartbeat |
| `micronaut.security.token.jwt.signatures.refresh-token.expiration` | 6h | Session idle timeout — users are logged out after this period of inactivity |
| `micronaut.security.token.refresh.cookie.cookie-max-age` | 12h | Browser cookie lifetime (should be ≥ refresh token) |
| Setting | Default | Description |
|:------------------------------------------------------------------|:-----------|:----------------------------------------------------------------------------|
| `micronaut.security.token.generator.access-token.expiration` | 3600s (1h) | Short-lived token, auto-refreshed via heartbeat |
| `micronaut.security.token.jwt.generator.refresh-token.expiration` | 6h | Session idle timeout — users are logged out after this period of inactivity |
| `micronaut.security.token.refresh.cookie.cookie-max-age` | 12h | Browser cookie lifetime (should be ≥ refresh token) |

**tower.yml**

Expand All @@ -127,7 +127,7 @@ micronaut:
security:
token:
jwt:
signatures:
generator:
refresh-token:
expiration: 8h
generator:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ tower:

Platform login sessions remain active as long as the application browser window remains open and active. Sessions use short-lived access tokens that are automatically refreshed via heartbeat.

| Setting | Default | Description |
| :------------------------- | :--------- | :--------------------------------------------------------------------- |
| `micronaut.security.token.generator.access-token.expiration` | 3600s (1h) | Short-lived token, auto-refreshed via heartbeat |
| `micronaut.security.token.jwt.signatures.refresh-token.expiration` | 6h | Session idle timeout — users are logged out after this period of inactivity |
| `micronaut.security.token.refresh.cookie.cookie-max-age` | 12h | Browser cookie lifetime (should be ≥ refresh token) |
| Setting | Default | Description |
|:------------------------------------------------------------------|:-----------|:----------------------------------------------------------------------------|
| `micronaut.security.token.generator.access-token.expiration` | 3600s (1h) | Short-lived token, auto-refreshed via heartbeat |
| `micronaut.security.token.jwt.generator.refresh-token.expiration` | 6h | Session idle timeout — users are logged out after this period of inactivity |
| `micronaut.security.token.refresh.cookie.cookie-max-age` | 12h | Browser cookie lifetime (should be ≥ refresh token) |

**tower.yml**

Expand All @@ -127,7 +127,7 @@ micronaut:
security:
token:
jwt:
signatures:
generator:
refresh-token:
expiration: 8h
generator:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ tower:

Platform login sessions remain active as long as the application browser window remains open and active. Sessions use short-lived access tokens that are automatically refreshed via heartbeat.

| Setting | Default | Description |
| :------------------------- | :--------- | :--------------------------------------------------------------------- |
| `micronaut.security.token.generator.access-token.expiration` | 3600s (1h) | Short-lived token, auto-refreshed via heartbeat |
| `micronaut.security.token.jwt.signatures.refresh-token.expiration` | 6h | Session idle timeout — users are logged out after this period of inactivity |
| `micronaut.security.token.refresh.cookie.cookie-max-age` | 12h | Browser cookie lifetime (should be ≥ refresh token) |
| Setting | Default | Description |
|:------------------------------------------------------------------|:-----------|:----------------------------------------------------------------------------|
| `micronaut.security.token.generator.access-token.expiration` | 3600s (1h) | Short-lived token, auto-refreshed via heartbeat |
| `micronaut.security.token.jwt.generator.refresh-token.expiration` | 6h | Session idle timeout — users are logged out after this period of inactivity |
| `micronaut.security.token.refresh.cookie.cookie-max-age` | 12h | Browser cookie lifetime (should be ≥ refresh token) |

**tower.yml**

Expand All @@ -127,7 +127,7 @@ micronaut:
security:
token:
jwt:
signatures:
generator:
refresh-token:
expiration: 8h
generator:
Expand Down
Loading